Skip to content

Commit cd0b6fd

Browse files
committed
Merge pull request GitbookIO#65 from ogwiz2/master
Adjusted commenting for better consistency
2 parents 47519bd + 893581d commit cd0b6fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

objects/properties.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The following code demonstates how to **get** a property's value.
2222
var variable = language.name;
2323
// variable now contains "JavaScript" string.
2424
variable = language['name'];
25-
/* The lines above do the same thing. The difference is that the second one lets you use litteraly any string as a property name, but it's less readable. */
25+
// The lines above do the same thing. The difference is that the second one lets you use litteraly any string as a property name, but it's less readable.
2626
variable = language.newProperty;
2727
// variable is now undefined, because we have not assigned this property yet.
2828
```

0 commit comments

Comments
 (0)