]> git.xonotic.org Git - xonotic/xonotic.wiki.git/commitdiff
typo
authorMartin Taibr <taibr.martin@gmail.com>
Wed, 5 Feb 2020 10:11:07 +0000 (10:11 +0000)
committerMartin Taibr <taibr.martin@gmail.com>
Wed, 5 Feb 2020 10:11:07 +0000 (10:11 +0000)
Introduction-to-QuakeC.md

index e52a160477522955963e2fba92e40dcdfec4823d..6b8770f9eec2c5dba9284215c9a7c6718c20b07c 100644 (file)
@@ -271,7 +271,7 @@ A special kind of functions are the built-in functions, which are defined by the
 string strcat(string a, string b, ...) = #115;
 ```
 
-The function/field syntax is ambiguous. In global scope a declaration can be a variable, field or function. In local scope, it's always a variable. The `var` keyword can be used in global scope to treat is as local scope (always declaring a variable). The following table shows declarations in global scope:
+The function/field syntax is ambiguous. In global scope a declaration can be a variable, field or function. In local scope, it's always a variable. The `var` keyword can be used in global scope to treat it as local scope (always declaring a variable). The following table shows declarations in global scope:
 
 | Example code | Meaning |
 |--------------|---------|