Skip to content

Commit

Permalink
fix indentation
Browse files Browse the repository at this point in the history
this sneaked into 2d025fe
  • Loading branch information
SethTisue committed Sep 24, 2015
1 parent a6c1687 commit 49fb8e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/reflect/scala/reflect/internal/Chars.scala
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ trait Chars {
'0' <= c && c <= '9' || 'A' <= c && c <= 'Z' || 'a' <= c && c <= 'z'

/** Can character start an alphanumeric Scala identifier? */
def isIdentifierStart(c: Char): Boolean =
def isIdentifierStart(c: Char): Boolean =
(c == '_') || (c == '$') || Character.isUnicodeIdentifierStart(c)

/** Can character form part of an alphanumeric Scala identifier? */
Expand Down

0 comments on commit 49fb8e3

Please sign in to comment.