Skip to content

Commit

Permalink
fix: Documentation
Browse files Browse the repository at this point in the history
Signed-off-by: Sam Smallman <srsmallman@mac.com>
  • Loading branch information
sammysmallman committed Oct 1, 2023
1 parent 351d854 commit 1dd0f2f
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions Sources/CoreOSC/OSCParser.swift
Original file line number Diff line number Diff line change
Expand Up @@ -230,13 +230,11 @@ public enum OSCParser {
return elements
}

/// An object that represents an array of either valid or invalid characters.
///
/// This object is used when parsing the OSC Address Pattern and Type Tag String from an OSC Message.
/// ASCII Characters that are either valid or invalid when parsing an OSC string.
enum OSCCharacters {
/// An array of either valid characters.
/// A collection of valid ASCII characters.
case valid(bytes: Set<UInt8>)
/// An array of either invalid characters.
/// A collection of invalid ASCII characters.
case invalid(bytes: Set<UInt8>)
}

Expand Down

0 comments on commit 1dd0f2f

Please sign in to comment.