Skip to content

Commit 21ff929

Browse files
committed
Rename trait
Fixes #2
1 parent f463d36 commit 21ff929

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,12 @@ mod tables;
6464
mod tests;
6565

6666
/// Methods for determining characters not restricted from use for identifiers.
67-
pub trait IdentifierStatusChar {
67+
pub trait UnicodeIdentifierStatus {
6868
/// Returns whether the character is not restricted from use for identifiers.
6969
fn identifier_allowed(self) -> bool;
7070
}
7171

72-
impl IdentifierStatusChar for char {
72+
impl UnicodeIdentifierStatus for char {
7373
#[inline]
7474
fn identifier_allowed(self) -> bool { is::identifier_status_allowed(self) }
7575
}

0 commit comments

Comments
 (0)