Skip to content

Commit 5ec49df

Browse files
authored
Merge pull request #4216 from SanjaySriram/patch-1
Fix typo in object literals section
2 parents 6c9866f + fe02ec4 commit 5ec49df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/1/en/part1b.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ Above, the variable _first_ is assigned the first integer of the array and the v
126126

127127
### Objects
128128

129-
There are a few different ways of defining objects in JavaScript. One very common method is using [object literals](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Grammar_and_types#Object_literals), which happens by listing its properties within braces:
129+
There are a few different ways of defining objects in JavaScript. One very common method is using [object literals](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Grammar_and_types#object_literals), which happens by listing its properties within braces:
130130

131131
```js
132132
const object1 = {

0 commit comments

Comments
 (0)