From 25df3e611a9c5769d7b883e8b863a23d9a705ae3 Mon Sep 17 00:00:00 2001 From: bashery Date: Mon, 31 Oct 2022 17:56:38 +0300 Subject: [PATCH] uint64 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 00b4c96..c8db11f 100644 --- a/README.md +++ b/README.md @@ -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