summaryrefslogtreecommitdiff
path: root/docs/design/decl-refs.md
diff options
context:
space:
mode:
authorBruce Mitchener <bruce.mitchener@gmail.com>2024-11-29 14:02:19 +0700
committerGitHub <noreply@github.com>2024-11-29 15:02:19 +0800
commitc3557978cf0184aaf75c27c309bc87e84fd6ab79 (patch)
treee7372839055ca3a7f2ad7b3aa7c895e428778533 /docs/design/decl-refs.md
parent71f97268789164bd77614636536172ba657c6a57 (diff)
docs: Reduce typo count (#5671)
Co-authored-by: Ellie Hermaszewska <ellieh@nvidia.com>
Diffstat (limited to 'docs/design/decl-refs.md')
-rw-r--r--docs/design/decl-refs.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/design/decl-refs.md b/docs/design/decl-refs.md
index 34b74a6f4..5c1958694 100644
--- a/docs/design/decl-refs.md
+++ b/docs/design/decl-refs.md
@@ -25,7 +25,7 @@ Why do we need `DeclRef`s?
--------------------------
In a compiler for a simple language, we might represent a reference to a declaration as simply a pointer to the AST node for the declaration, or some kind of handle/ID that references that AST node.
-A reprsentation like that will work in simple cases, for example:
+A representation like that will work in simple cases, for example:
```hlsl
struct Cell { int value };