Skip to content

Commit 007274e

Browse files
committed
[SE-0258] Fix more typos / grammaros
1 parent 19569f3 commit 007274e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

proposals/0258-property-wrappers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ class Foo {
375375

376376
Many Cocoa classes implement value-like objects that require explicit copying.
377377
Swift currently provides an `@NSCopying` attribute for properties to give
378-
them behave like Objective-C's `@property(copy)`, invoking the `copy` method
378+
them behavior like Objective-C's `@property(copy)`, invoking the `copy` method
379379
on new objects when the property is set. We can turn this into a wrapper:
380380

381381
```swift
@@ -403,7 +403,7 @@ This implementation would address the problem detailed in
403403

404404
### `Atomic`
405405

406-
Support for atomic operations (load, store, increment/decementer, compare-and-exchange) is a commonly-requested Swift feature. While the implementation details for such a feature would involve compiler and standard library magic, the interface itself can be nicely expressed as a property wrapper type:
406+
Support for atomic operations (load, store, increment/decrement, compare-and-exchange) is a commonly-requested Swift feature. While the implementation details for such a feature would involve compiler and standard library magic, the interface itself can be nicely expressed as a property wrapper type:
407407

408408

409409
```swift

0 commit comments

Comments
 (0)