Skip to content

Commit

Permalink
chore(stdlib): Correct typo in Int8 doc example (#2119)
Browse files Browse the repository at this point in the history
  • Loading branch information
spotandjake authored Jun 27, 2024
1 parent 03e10c4 commit e821c33
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion stdlib/int8.gr
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ provide let (>=) = (x: Int8, y: Int8) => {
* @param value: The given value
* @returns Containing the inverted bits of the given value
*
* @example Int.lnot(-5s) == 4s
* @example Int8.lnot(-5s) == 4s
*
* @since v0.6.0
*/
Expand Down
2 changes: 1 addition & 1 deletion stdlib/int8.md
Original file line number Diff line number Diff line change
Expand Up @@ -682,7 +682,7 @@ Returns:
Examples:

```grain
Int.lnot(-5s) == 4s
Int8.lnot(-5s) == 4s
```

### Int8.**(&)**
Expand Down

0 comments on commit e821c33

Please sign in to comment.