Skip to content

Commit 0fc8539

Browse files
authored
Merge pull request #299 from bashery/master
doc: int64 --> uint64
2 parents 8bf80a3 + 25df3e6 commit 0fc8539

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ The `result.Int()` and `result.Uint()` calls are capable of reading all 64 bits,
176176

177177
```go
178178
result.Int() int64 // -9223372036854775808 to 9223372036854775807
179-
result.Uint() int64 // 0 to 18446744073709551615
179+
result.Uint() uint64 // 0 to 18446744073709551615
180180
```
181181

182182
## Modifiers and path chaining

0 commit comments

Comments
 (0)