Skip to content

Commit 513e694

Browse files
authored
Merge pull request #1196 from an0/patch-1
Fix double addressing
2 parents 9d5c3a2 + 218f37d commit 513e694

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

proposals/0282-atomics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ However, despite the superficial similarity, the `&` here isn't an address-of op
181181

182182
```swift
183183
withUnsafePointer(to: &value) { pointer in
184-
test(&pointer)
184+
test(pointer)
185185
}
186186
```
187187

0 commit comments

Comments
 (0)