summaryrefslogtreecommitdiffstats
path: root/docs/user-guide
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2021-02-17 18:46:14 -0800
committerGitHub <noreply@github.com>2021-02-17 18:46:14 -0800
commit22fe1dfed3ee6e1d0d00f0cb08b6549f771ef5cf (patch)
tree7b08e3db3701a721de0ef588d9da87e6ae7b1c05 /docs/user-guide
parentb1e376fa1e7dd0ff59991bdf1d3d859d3b63a74a (diff)
Fix typo in user guide.
Diffstat (limited to 'docs/user-guide')
-rw-r--r--docs/user-guide/03-convenience-features.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/user-guide/03-convenience-features.md b/docs/user-guide/03-convenience-features.md
index 0a6723242..ff011af23 100644
--- a/docs/user-guide/03-convenience-features.md
+++ b/docs/user-guide/03-convenience-features.md
@@ -2,7 +2,7 @@
This topic covers a series of nice-to-have language features in Slang. These features are not supported by HLSL but are introduced to Slang to simplify code development. Many of these features are added to Slang per request of our users.
-## Type Inference in Varaible Definitions
+## Type Inference in Variable Definitions
Slang supports automatic variable type inference:
```C#
var a = 1; // OK, `a` is an `int`.