Skip to content

Commit

Permalink
fix a few typos
Browse files Browse the repository at this point in the history
  • Loading branch information
hmkemppainen committed Mar 30, 2024
1 parent 64cc889 commit 47ba3a3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 10-io.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ every I/O verb has a different data format. However, the destination and source
- An absolute path like `"/path/to/file"`
- A relative path Input, Output and System functions

The main method of I/O(input/output) in K is is via its input verbs: and input verb is denoted by a single digit, followed by a `:` symbol.
The main method of I/O(input/output) in K is is via its input verbs: an input verb is denoted by a single digit, followed by a `:` symbol.

The number of an input verb denotes is data format:

Expand Down
4 changes: 2 additions & 2 deletions 11-debug-errors.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ but the values of the arguments are not supported (they are not in the right dom
**Examples:**
```
(0;1 2)!3 / arrays cannot be keys
&-1 / cannot repeat by negaitve amount
&-1 / cannot repeat by negative amount
1?-1 / negative range does not work
1 2_() / empty array cannot be dropped from
-1 2_(1 2;3 4) / negative drop values do not work on a 2d array
Expand All @@ -83,7 +83,7 @@ A length error occurs when the lengths of two arguments do not conform to each o
### `'value`
A value error occurs on variable names that are not declared yet.

**Example:** `a+5` will error if `a` ia not defined.
**Example:** `a+5` will error if `a` is not defined.

### `'nyi`
NYI means not yet implemented. It triggers on overloads which are in ngn/k's design, but are not implemented yet.
Expand Down

0 comments on commit 47ba3a3

Please sign in to comment.