From 6e8fbe90ea1267a2da14d977c2b89291919bbab9 Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Thu, 15 Sep 2022 03:43:35 +1000 Subject: [PATCH] Capitalization --- types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types.md b/types.md index af7c1fd..563f45a 100644 --- a/types.md +++ b/types.md @@ -75,7 +75,7 @@ var t: type = astype [int]; //t is a type, representing an array of integers var u: type = [int]; //Error! it tried to assign an array with the sole entry "int" ``` -## First-Class citizens +## First-Class Citizens Types are first-class citizens. What this means is that they can be used just like any other value, as well as being stored in variables, and even returned from functions.