Skip to content

Commit

Permalink
More block comments
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-fowler committed Nov 23, 2024
1 parent 026e98f commit 55e6208
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Sources/HummingbirdCore/Utils/HBParser.swift
Original file line number Diff line number Diff line change
Expand Up @@ -654,10 +654,10 @@ extension Unicode.Scalar {

package var isNewline: Bool {
switch self.value {
case 0x000A...0x000D /* LF ... CR */: return true
case 0x0085 /* NEXT LINE (NEL) */: return true
case 0x2028 /* LINE SEPARATOR */: return true
case 0x2029 /* PARAGRAPH SEPARATOR */: return true
case 0x000A...0x000D: return true // LF ... CR
case 0x0085: return true // NEXT LINE (NEL)
case 0x2028: return true // LINE SEPARATOR
case 0x2029: return true // PARAGRAPH SEPARATOR
default: return false
}
}
Expand Down

0 comments on commit 55e6208

Please sign in to comment.