Skip to content

Commit e56ab0b

Browse files
committed
Remove instances of 'can not'
1 parent 0f19a72 commit e56ab0b

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

01_values.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ quote}}
1414
{{index "Yuan-Ma", "Book of Programming", "binary data", data, bit, memory}}
1515

1616
Inside the computer's world, there is only data. You can read data,
17-
modify data, create new data—but that which isn't data can not be
17+
modify data, create new data—but that which isn't data cannot be
1818
mentioned. All this data is stored as long sequences of bits and is
1919
thus fundamentally alike.
2020

02_program_structure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ in this book because it has some confusing properties.
188188
{{index "const keyword", naming}}
189189

190190
The word `const` stands for _((constant))_. It defines a constant
191-
binding, which can not be made to point at a new thing. This is useful
191+
binding, which cannot be made to point at a new thing. This is useful
192192
for bindings that give a name to a value so that you can easily refer
193193
to them later, but which are not going to ever change.
194194

03_functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ what's going on in the global environment.
125125

126126
Bindings declared with `let` and `const` are in fact local to the
127127
_((block))_ that they are declared in, so if you create one of those
128-
inside of a loop, the code before and after the loop can not "see" it.
128+
inside of a loop, the code before and after the loop cannot "see" it.
129129
In pre-2015 JavaScript, only functions created new scopes, so
130130
old-style bindings, created with the `var` keyword, are visible
131131
throughout the whole function that they appear in—or throughout the

07_robot.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,7 @@ Our code doesn't handle the situation where there are no more work
500500
items on the work list, because we know that our graph is _connected_,
501501
meaning that every location can be reached from all other locations.
502502
We'll always be able to find a route between two points, and the
503-
search can not fail.
503+
search can't fail.
504504

505505
```{includeCode: true}
506506
function goalOrientedRobot({place, parcels}, route) {

18_http.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ return the same value.
271271
Note that the promise returned by `fetch` resolves successfully even
272272
if the server responded with an error code. It _might_ also be
273273
rejected, if there is a network error or the ((server)) that the
274-
request is addressed to can not be found.
274+
request is addressed to can't be found.
275275

276276
{{index [path, URL], "relative URL"}}
277277

0 commit comments

Comments
 (0)