Skip to content

Commit 01f508b

Browse files
committed
Cleanup: comments.
1 parent 3e89b35 commit 01f508b

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

Sources/DiffableTextStylesXNumeric/Number/Glyph.swift

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@ import Foundation
1313
// MARK: * Glyph
1414
//*============================================================================*
1515

16-
/// An object representing an ASCII character by its UInt8 unicode value.
16+
/// An object representing an ASCII character by its UTF8 value.
17+
///
18+
/// - The conforming object MUST be a struct.
19+
///
1720
@usableFromInline protocol Glyph: Hashable, CaseIterable, CustomStringConvertible {
1821
associatedtype Enumeration: CaseIterable, RawRepresentable where Enumeration.RawValue == UInt8
1922

Sources/DiffableTextStylesXNumeric/Number/Glyphs.swift

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,7 @@
1111
// MARK: * Glyphs
1212
//*============================================================================*
1313

14-
/// An object representing multiple ASCII characters by their UInt8 unicode values.
15-
///
16-
/// - The conforming object MUST be a struct.
17-
/// - The conforming object SHOULD implement a single private init method.
18-
///
14+
/// An object representing multiple ASCII characters by their UTF8 values.
1915
@usableFromInline protocol Glyphs: CustomStringConvertible {
2016

2117
//=------------------------------------------------------------------------=

0 commit comments

Comments
 (0)