From c3557978cf0184aaf75c27c309bc87e84fd6ab79 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Fri, 29 Nov 2024 14:02:19 +0700 Subject: docs: Reduce typo count (#5671) Co-authored-by: Ellie Hermaszewska --- docs/design/existential-types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/design/existential-types.md') 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 obj) { -- cgit v1.2.3