Skip to content

Common Errors Editing #111

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 13 commits into from
Jun 28, 2024
Prev Previous commit
Value type, formatting
  • Loading branch information
mattmassicotte committed Jun 27, 2024
commit df9bca15fdd4bfe4842598e5fc86f339dcdfb86c
8 changes: 4 additions & 4 deletions Guide.docc/CommonProblems.md
Original file line number Diff line number Diff line change
Expand Up @@ -700,10 +700,10 @@ final class Style: Sendable {
}
```

A reference type that conforms to `Sendable` is sometimes a sign that a struct
would be preferable, but there are circumstances where reference semantics need
to be preserved, or where compatibility with a mixed Swift/Objective-C code base
is required.
A reference type that conforms to `Sendable` is sometimes a sign that a value
type would be preferable.
But there are circumstances where reference semantics need to be preserved,
or where compatibility with a mixed Swift/Objective-C code base is required.

#### Using Composition

Expand Down