Skip to content

Commit 4db9f4b

Browse files
committed
OSCValueTagIdentity: Updated inline docs
1 parent 23c4b42 commit 4db9f4b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/OSCKitCore/OSCSerialization/OSCValueTagIdentity.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public enum OSCValueTagIdentity: Equatable, Hashable {
99
/// Atomic:
1010
/// The OSC value is identified with a single static OSC-type tag character.
1111
///
12-
/// Most OSC values are represented in this manner. ie: "i" for Int32, "s" for String, etc.
12+
/// Most OSC values are represented in this manner. ie: `i` for `Int32`, `s` for `String`, etc.
1313
case atomic(Character)
1414

1515
/// Variable:
@@ -27,7 +27,7 @@ public enum OSCValueTagIdentity: Equatable, Hashable {
2727
/// validation. Very few implementations will require this pattern.
2828
///
2929
/// One (perhaps the only) example of a variadic implementation is an OSC value array. It starts
30-
/// with the "[" tag and ends with the "]" tag and may contain zero or more atomic values. It
30+
/// with the `[` tag and ends with the `]` tag and may contain zero or more atomic values. It
3131
/// would have a `minCount` of 2 and a `maxCount` of `nil`. Variadic is how OSCKit itself
3232
/// internally implements OSC array encoding and decoding.
3333
case variadic(minCount: Int?, maxCount: Int?)

0 commit comments

Comments
 (0)