From 20bf8b2a0b43ab46cd9716a2444a181a044bb923 Mon Sep 17 00:00:00 2001 From: Martin Taibr Date: Wed, 5 Feb 2020 10:11:07 +0000 Subject: [PATCH] typo --- Introduction-to-QuakeC.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 | |--------------|---------| -- 2.39.2