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:
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",