We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2099987 commit 7189c81Copy full SHA for 7189c81
1 file changed
doc/src/manual/performance-tips.md
@@ -13,7 +13,7 @@ The functions should take arguments, instead of operating directly on global var
13
14
## Avoid untyped global variables
15
16
-An untyped global variable might have its value, and therefore possibly its type, changed at any point. This makes
+The value of an untyped global variable might change at any point, possibly leading to a change of its type. This makes
17
it difficult for the compiler to optimize code using global variables. This also applies to type-valued variables,
18
i.e. type aliases on the global level. Variables should be local, or passed as arguments to functions, whenever possible.
19
0 commit comments