Skip to content

Commit

Permalink
Fix up some more docs errors.
Browse files Browse the repository at this point in the history
Catch more things Tony noticed when I tried to pull the previous fixes over to
the 1.x branch.
  • Loading branch information
thomasvl committed Aug 18, 2023
1 parent 50366b2 commit 5c8ba30
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Sources/SwiftProtobuf/BinaryDelimited.swift
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ public enum BinaryDelimited {
/// extensions in this message or messages nested within this message's
/// fields.
/// - partial: If `false` (the default), this method will check
/// `Message.isInitialized` before decoding to verify that all required
/// `Message.isInitialized` after decoding to verify that all required
/// fields are present. If any are missing, this method throws
/// `BinaryDecodingError.missingRequiredFields`.
/// - options: The BinaryDecodingOptions to use.
Expand Down
4 changes: 2 additions & 2 deletions Sources/SwiftProtobuf/Message+BinaryAdditions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ extension Message {
/// extensions in this message or messages nested within this message's
/// fields.
/// - partial: If `false` (the default), this method will check
/// `Message.isInitialized` before decoding to verify that all required
/// `Message.isInitialized` after decoding to verify that all required
/// fields are present. If any are missing, this method throws
/// `BinaryDecodingError.missingRequiredFields`.
/// - options: The BinaryDecodingOptions to use.
Expand Down Expand Up @@ -175,7 +175,7 @@ extension Message {
/// extensions in this message or messages nested within this message's
/// fields.
/// - partial: If `false` (the default), this method will check
/// `Message.isInitialized` before decoding to verify that all required
/// `Message.isInitialized` after decoding to verify that all required
/// fields are present. If any are missing, this method throws
/// `BinaryDecodingError.missingRequiredFields`.
/// - options: The BinaryDecodingOptions to use.
Expand Down

0 comments on commit 5c8ba30

Please sign in to comment.