hare

The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit 71c508537f45ac3915f42a0282b3aac345f15e14
parent 895c1b3a5344680004cb9e118496c0723374aa4e
Author: Christopher M. Riedl <cmr@bluescreens.de>
Date:   Mon,  3 May 2021 23:29:42 -0500

errors: use correct indefinite article

Signed-off-by: Christopher M. Riedl <cmr@bluescreens.de>

Diffstat:
Merrors/string.ha | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/errors/string.ha b/errors/string.ha @@ -11,7 +11,7 @@ export fn strerror(err: error) const str = match (err) { busy => "The requested resource is not available", exists => "An attempt was made to create a resource which already exists", - invalid => "An function was called with an invalid combination of arguments", + invalid => "A function was called with an invalid combination of arguments", noaccess => "The user does not have permission to use this resource", noentry => "An entry was requested which does not exist", overflow => "The requested operation caused a numeric overflow condition",