Skip to content

Commit

Permalink
Remove extraneous ; (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
youming-lin authored and shmuelk committed Dec 7, 2016
1 parent 5e75565 commit e4d8d66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/HTMLEntities/String+HTMLEntities.swift
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ fileprivate func decode(entity: String, entityPrefix: String, strict: Bool) thro

for length in legacyNamedCharactersLengthRange {
guard length <= entity.characters.count else {
break;
break
}

let upperIndex = entity.index(entity.startIndex, offsetBy: length)
Expand Down

0 comments on commit e4d8d66

Please sign in to comment.