This commit is contained in:
bashery 2022-10-31 17:56:38 +03:00
parent 8bf80a300b
commit 25df3e611a
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ The `result.Int()` and `result.Uint()` calls are capable of reading all 64 bits,
```go ```go
result.Int() int64 // -9223372036854775808 to 9223372036854775807 result.Int() int64 // -9223372036854775808 to 9223372036854775807
result.Uint() int64 // 0 to 18446744073709551615 result.Uint() uint64 // 0 to 18446744073709551615
``` ```
## Modifiers and path chaining ## Modifiers and path chaining