commit 21cb0f78788cde4c80db288a081bb24605fdc161
parent dd4942e100c6e6e0d61ec206da2e8bec2e27ef93
Author: Noah Altunian <nbaltunian@gmail.com>
Date: Sat, 12 Jun 2021 19:34:11 -0400
errors: Fix misspelling in code comment
Signed-off-by: Noah Altunian <nbaltunian@gmail.com>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/errors/common.ha b/errors/common.ha
@@ -4,7 +4,7 @@ export type busy = !void;
// An attempt was made to create a resource which already exists.
export type exists = !void;
-// An function was called with an invalid combination of arguments.
+// A function was called with an invalid combination of arguments.
export type invalid = !void;
// The user does not have permission to use this resource.