Skip to content

Commit

Permalink
Merge pull request #299 from bashery/master
Browse files Browse the repository at this point in the history
doc: int64 --> uint64
  • Loading branch information
tidwall committed Nov 14, 2022
2 parents 8bf80a3 + 25df3e6 commit 0fc8539
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -176,7 +176,7 @@ The `result.Int()` and `result.Uint()` calls are capable of reading all 64 bits,

```go
result.Int() int64 // -9223372036854775808 to 9223372036854775807
result.Uint() int64 // 0 to 18446744073709551615
result.Uint() uint64 // 0 to 18446744073709551615
```

## Modifiers and path chaining
Expand Down

0 comments on commit 0fc8539

Please sign in to comment.