summaryrefslogtreecommitdiffstats
path: root/docs/design/existential-types.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/existential-types.md
parent71f97268789164bd77614636536172ba657c6a57 (diff)
docs: Reduce typo count (#5671)
Co-authored-by: Ellie Hermaszewska <ellieh@nvidia.com>
Diffstat (limited to 'docs/design/existential-types.md')
-rw-r--r--docs/design/existential-types.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/design/existential-types.md b/docs/design/existential-types.md
index 06e2613e3..0f3469051 100644
--- a/docs/design/existential-types.md
+++ b/docs/design/existential-types.md
@@ -194,7 +194,7 @@ When dealing with a value type, though, we have to deal with things like making
```
interface IWritable { [mutating] void write(int val); }
-stuct Cell : IWritable { int data; void write(int val) { data = val; } }
+struct Cell : IWritable { int data; void write(int val) { data = val; } }
T copyAndClobber<T : IWritable>(T obj)
{