Skip to content

Commit e6599be

Browse files
committed
Use 's for possessive of singular -s words everywhere
1 parent 9dc4185 commit e6599be

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

04_data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ tentacles in a neat row, labeled with numbers.
378378

379379
{{index journal, "weresquirrel example"}}
380380

381-
We will represent Jacques' journal as an array of objects.
381+
We will represent the journal that Jacques keeps as an array of objects.
382382

383383
```{test: wrap}
384384
let journal = [

07_robot.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -640,7 +640,7 @@ The class should work for values of any type, not just strings. It
640640
does _not_ have to be efficient when used with large amounts of
641641
values.
642642

643-
The ((constructor)) shouldn't be part of the class' ((interface))
643+
The ((constructor)) shouldn't be part of the class's ((interface))
644644
(though you'll definitely want to use it internally). Instead, there
645645
is an empty instance, `PGroup.empty`, that can be used as a starting
646646
value.
@@ -684,7 +684,7 @@ When a value is added to the group, you can create a new group with a
684684
copy of the original array that has the value added (for example, using
685685
`concat`). When a value is deleted, you filter it from the array.
686686

687-
The class' ((constructor)) can take such an array as argument, and
687+
The class's ((constructor)) can take such an array as argument, and
688688
store it as the instance's (only) property. This array is never
689689
updated.
690690

20_node.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ Hello world
9898

9999
The `console.log` method in Node does something similar to what it
100100
does in the browser. It prints out a piece of text. But in Node, the
101-
text will go to the process' ((standard output)) stream, rather than
101+
text will go to the process's ((standard output)) stream, rather than
102102
to a browser's ((JavaScript console)). When running `node` from the
103103
command line, that means you see the logged values in your
104104
((terminal)).
@@ -686,7 +686,7 @@ request({
686686

687687
{{index "stdout property", "standard output", "writable stream", "console.log"}}
688688

689-
The example writes to `process.stdout` (the process' standard output,
689+
The example writes to `process.stdout` (the process's standard output,
690690
which is a writable stream) instead of using `console.log`. We can't
691691
use `console.log` because it adds an extra newline character after
692692
each piece of text that it writes, which isn't appropriate here since

0 commit comments

Comments
 (0)