Skip to content

Commit 2c7fc8a

Browse files
committed
u
1 parent 01ac487 commit 2c7fc8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/oxc_syntax/src/es_target.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ impl FromStr for ESTarget {
2727

2828
fn from_str(s: &str) -> Result<Self, Self::Err> {
2929
match s.cow_to_ascii_lowercase().as_ref() {
30-
"es5" => Err(String::from("We don't provide ES5 support yet.")),
30+
"es5" => Err(String::from("ES5 is not yet supported.")),
3131
"es6" | "es2015" => Ok(Self::ES2015),
3232
"es2016" => Ok(Self::ES2016),
3333
"es2017" => Ok(Self::ES2017),

0 commit comments

Comments
 (0)