Skip to content

Commit f3c8a30

Browse files
committed
Fix comma splice.
Add commas. Fix incomplete sentence.
1 parent d4111e1 commit f3c8a30

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/en/object/prototype.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
## The Prototype
22

3-
JavaScript does not feature a classical inheritance model, instead it uses a
3+
JavaScript does not feature a classical inheritance model; instead, it uses a
44
*prototypal* one.
55

66
While this is often considered to be one of JavaScript's weaknesses, the
77
prototypal inheritance model is in fact more powerful than the classic model.
8-
It is for example fairly trivial to build a classic model on top of it, while the
8+
It is, for example, fairly trivial to build a classic model on top of it, while the
99
other way around is a far more difficult task.
1010

1111
Due to the fact that JavaScript is basically the only widely used language that
@@ -71,7 +71,7 @@ hasn't found the specified property, it will return the value
7171
### The Prototype Property
7272

7373
While the prototype property is used by the language to build the prototype
74-
chains, it is still possible to assign **any** given value to it. Although
74+
chains, it is still possible to assign **any** given value to it. However,
7575
primitives will simply get ignored when assigned as a prototype.
7676

7777
function Foo() {}

0 commit comments

Comments
 (0)