Skip to content

Commit ada08ad

Browse files
committed
fix: proper formatting
1 parent aa63079 commit ada08ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/html/usage.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ use serde::Serialize;
1010
use std::borrow::Cow;
1111

1212
lazy_static! {
13-
+ static ref IDENTIFIER_RE: Regex =
14-
+ Regex::new(r"^[0-9]|[^a-zA-Z0-9$_]").unwrap();
13+
static ref IDENTIFIER_RE: Regex =
14+
Regex::new(r"^[0-9]|[^a-zA-Z0-9$_]").unwrap();
1515
}
1616

1717
fn render_css_for_usage(name: &str) -> String {

0 commit comments

Comments
 (0)