Skip to content

Commit b591eb4

Browse files
authored
Merge pull request #21 from RiverCui/patch-1
修改文字错误
2 parents ab81475 + 489af31 commit b591eb4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/object-oriented-programming/object-understand/manipulating-property.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ console.log('a' in foo);
227227

228228
每个 JavaScript 对象都和另一个对象相关联。"另一个对象"就是我们熟知的原型,每一个对象都从原型继承属性。
229229

230-
所有通过对象直接量创建的对象都具有同一个原型对象,并可以通过 `Object.prototype` 获得对原型对象的引用。
230+
所有通过对象字面量创建的对象都具有同一个原型对象,并可以通过 `Object.prototype` 获得对原型对象的引用。
231231

232232
```js
233233
const foo = {};

0 commit comments

Comments
 (0)