From: Martin Taibr Date: Wed, 5 Feb 2020 10:11:07 +0000 (+0000) Subject: typo X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=20bf8b2a0b43ab46cd9716a2444a181a044bb923;p=xonotic%2Fxonotic.wiki.git typo --- diff --git a/Introduction-to-QuakeC.md b/Introduction-to-QuakeC.md index e52a160..6b8770f 100644 --- a/Introduction-to-QuakeC.md +++ b/Introduction-to-QuakeC.md @@ -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 | |--------------|---------|