summaryrefslogtreecommitdiff
path: root/docs/design/existential-types.md
diff options
context:
space:
mode:
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)
{