Fix syntax example in the Variable page

In the variable page, fix the syntax according to the example
This commit is contained in:
Ashish Singh 2023-09-16 16:14:04 +05:30 committed by GitHub
parent 59cb2683d1
commit d9e4c59f58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
public/variables generated
View File

@ -122,7 +122,7 @@ zero value for an <code>int</code> is <code>0</code>.</p>
<td class="docs"> <td class="docs">
<p>The <code>:=</code> syntax is shorthand for declaring and <p>The <code>:=</code> syntax is shorthand for declaring and
initializing a variable, e.g. for initializing a variable, e.g. for
<code>var f string := &quot;apple&quot;</code> in this case. <code>f := &quot;apple&quot;</code> in this case.
This syntax is only available inside functions.</p> This syntax is only available inside functions.</p>
</td> </td>