Skip to content

Commit bff5ae6

Browse files
authored
Merge pull request #19 from austinlyons/master
Fix typos
2 parents e299e50 + b78575c commit bff5ae6

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

src/handbook/bind.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ commit @browser
5252
[#div text: seconds]
5353
```
5454

55-
Comapred to the previous block, we only changed `bind` to `commit`. When you run this block, at first you'll see a single message like before. However, you'll notice that messages begin to accumulate every second. Unlike with bind, **committed records persist in the database until they are intentionally removed**.
55+
Compared to the previous block, we only changed `bind` to `commit`. When you run this block, at first you'll see a single message like before. However, you'll notice that messages begin to accumulate every second. Unlike with bind, **committed records persist in the database until they are intentionally removed**.
5656

5757
To make things very concrete, we can actually mimic the behavior of a bind using two blocks that commit. We've already got the first one (the one just above), that commits messages to `@browser`. Now all we need is a second block, one that removes old committed messages from `@browser`:
5858

@@ -258,4 +258,4 @@ bind @browser
258258

259259
## See Also
260260

261-
[commit](../commit) | [databases](../databases) | [search](../search)
261+
[commit](../commit) | [databases](../databases) | [search](../search)

src/handbook/blocks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ commit
6262
[#student name: "Ingrid"]
6363
```
6464

65-
This block has no `search` action, so it doesn't depend on any other recrods. Thus, it can be viewed as a "root" of the program. A program may contain many such roots.
65+
This block has no `search` action, so it doesn't depend on any other records. Thus, it can be viewed as a "root" of the program. A program may contain many such roots.
6666

6767
## Examples
6868

src/handbook/commit.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ commit @database1, ..., @databaseN
2020

2121
## Description
2222

23-
`commmit` updates or creates new records that persist in a database until they are intentionally removed. If supporting records change or are removed, the original committed records remain in tact, and can still be searched by other blocks. By default, committed records are directed to a local database.
23+
`commit` updates or creates new records that persist in a database until they are intentionally removed. If supporting records change or are removed, the original committed records remain in tact, and can still be searched by other blocks. By default, committed records are directed to a local database.
2424

2525
`commit @database1, ..., @databaseN` directs committed records one or more databases.
2626

@@ -50,7 +50,7 @@ commit @browser
5050
[#div text: seconds]
5151
```
5252

53-
Comapred to the previous block, we only changed `bind` to `commit`. When you run this block, at first you'll see a single message like before. However, you'll notice that messages begin to accumulate every second. Unlike with bind, **committed records persist in the database until they are intentionally removed**.
53+
Compared to the previous block, we only changed `bind` to `commit`. When you run this block, at first you'll see a single message like before. However, you'll notice that messages begin to accumulate every second. Unlike with bind, **committed records persist in the database until they are intentionally removed**.
5454

5555
To make things very concrete, we can actually mimic the behavior of a bind using two blocks that commit. We've already got the first one (the one just above), that commits messages to `@browser`. Now all we need is a second block, one that removes old committed messages from `@browser`:
5656

src/handbook/string-interpolation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ injects the value of an attribute or variable into a string
2222

2323
String interpolation works element-wise on its input. This means the string will be repeated for every unique value in `variable`.
2424

25-
Multiple variables can be interpolatd into strings. If the variables have no relation to eacother (i.e. they are not joined or part of the same record), then string interpolation is applied to the cartesian product of the sets.
25+
Multiple variables can be interpolated into strings. If the variables have no relation to eacother (i.e. they are not joined or part of the same record), then string interpolation is applied to the cartesian product of the sets.
2626

2727
## Examples
2828

@@ -49,4 +49,4 @@ bind @browser
4949

5050
## See Also
5151

52-
[strings](../strings) | [expressions](../expressions)
52+
[strings](../strings) | [expressions](../expressions)

0 commit comments

Comments
 (0)