From c03378ee159c812566a36e1c3f69fc2bc32f6c21 Mon Sep 17 00:00:00 2001 From: Lukas Malkmus Date: Mon, 20 Jan 2025 09:48:27 +0100 Subject: [PATCH] Update README.md Suggest correct type to use. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 62c0cd0..cb484dd 100644 --- a/README.md +++ b/README.md @@ -211,7 +211,7 @@ that we need to make that are specific to Go!: If an assertion is raised, then the Counter has been incorrectly updated with a negative integer. This highlights two programmer errors: - 1. `count` should be of type `int16` + 1. `count` should be of type `uint16` 2. The calling code expected to be able to pass negative integers - Assert the _Property Space_ wherever possible, and use Golangs Fuzzer to test it