Skip to content

Commit

Permalink
Add more spelling changes
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeRoggenbuck committed Jan 4, 2025
1 parent e4f2ccf commit 05ed7f8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ sqrt square root
And build-in constants:
```
e Euler's number
C Speed of light in m/s
C Speed of light (in m/s)
pi Pi
true and false
```
Expand All @@ -96,7 +96,7 @@ true and false
## Constants
- `e` Euler's number
- `pi` Pi
- `C` Speed of light in m/s
- `C` Speed of light (in m/s)
- `true` Boolean true
- `false` Boolean false

Expand Down Expand Up @@ -168,7 +168,7 @@ Create an addition function called `foo`. Note that to start a function you do i
-> 3
```

Here is the example of calculating the speed dilation of an object at velocity `v` in m/s for time `t` in seconds. More info about this in the section [#Component-in-action](#component-in-action)
Here is the example of calculating the speed dilation of an object at velocity `v` (in m/s) for time `t` (in seconds). More info about this in the section [#Component-in-action](#component-in-action)

```
> > t 1 v 2 ^ C 2 ^ / - sqrt / s fn
Expand Down Expand Up @@ -267,7 +267,7 @@ Error: Stack Empty [E4]

#### Operation Not Implemented [E5]

The Operation Not Implemented error occurs when a non-identifier symbol has been parsed that has not gotten functionality yet. Symbol here meaning one or many characters (e.g. `foo` or `123`). Since symbols that are not keywords or existing identifiers get read as identifiers (so long they follow the identifier rules), there are few things that trigger the Operation Not Implemented error. The one class of symbols that do cause this error are characters like `#` and `$` which have not been assigned any operation.
The Operation Not Implemented error occurs when a non-identifier symbol has been parsed that has not gotten functionality yet. Symbol here meaning one or many characters (e.g. `foo` or `123`). Since symbols that are not keywords or existing identifiers get read as identifiers (so long they follow the identifier rules), there are few cases that trigger the Operation Not Implemented error. The one class of symbols that do cause this error are characters like `#` and `$` which have not been assigned any operation.

```
> #
Expand Down

0 comments on commit 05ed7f8

Please sign in to comment.