diff --git a/docs/oop/prototype.md b/docs/oop/prototype.md index 9c20673..140240f 100644 --- a/docs/oop/prototype.md +++ b/docs/oop/prototype.md @@ -445,7 +445,7 @@ Object.assign(S.prototype, M2.prototype); S.prototype.constructor = S; var s = new S(); -s.hello // 'hello:' +s.hello // 'hello' s.world // 'world' ```