Skip to content
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

Added missing doc comment characters #8474

Merged
merged 1 commit into from
Feb 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions RealmSwift/Realm.swift
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public typealias AsyncTransactionId = RLMAsyncTransactionId
the code which uses the Realm within an `autoreleasepool {}` and ensure you have no other strong
references to it.

- warning Non-frozen `RLMRealm` instances are thread-confined and cannot be
- warning: Non-frozen `RLMRealm` instances are thread-confined and cannot be
shared across threads or dispatch queues. Trying to do so will cause an
exception to be thrown. You must obtain an instance of `RLMRealm` on each
thread or queue you want to interact with the Realm on. Realms can be confined
Expand Down Expand Up @@ -482,7 +482,7 @@ public typealias AsyncTransactionId = RLMAsyncTransactionId
This becomes `true` following a call to `beginAsyncWrite`, `commitAsyncWrite`,
or `writeAsync`, and remains so until all scheduled async write work has completed.

@warning If this is `true`, closing or invalidating the Realm will block until scheduled work has completed.
- warning: If this is `true`, closing or invalidating the Realm will block until scheduled work has completed.
*/
public var isPerformingAsynchronousWriteOperations: Bool {
return rlmRealm.isPerformingAsynchronousWriteOperations
Expand Down
2 changes: 1 addition & 1 deletion RealmSwift/RealmCollection.swift
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ public protocol RealmCollection: RealmCollectionBase, Equatable where Iterator =
/**
Returns an array containing the objects in the collection at the indexes specified by a given index set.

- warning Throws if an index supplied in the IndexSet is out of bounds.
- warning: Throws if an index supplied in the IndexSet is out of bounds.

- parameter indexes: The indexes in the collection to select objects from.
*/
Expand Down
Loading