Skip to content

Commit 7e6816c

Browse files
committed
Fix an editorial error noticed by Florent Bruneau.
1 parent 107a8af commit 7e6816c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

proposals/0176-enforce-exclusive-access-to-memory.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ struct Array numbers = _Array_init();
188188
_Array_appendABunchOfStuff(&numbers);
189189
```
190190
191-
You can see clearly how ``_Int_appendABunchOfStuff`` will be working
191+
You can see clearly how ``_Array_appendABunchOfStuff`` will be working
192192
directly with the storage of ``numbers``, creating the abstract
193193
possibility of overlapping accesses to that variable. To prevent
194194
this in general, we would need to pass a temporary copy instead:

0 commit comments

Comments
 (0)