File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -20,13 +20,13 @@ parse_safely <- function(text, ...) {
20
20
error = function (e ) {
21
21
if (has_crlf_as_first_line_sep(e $ message , text )) {
22
22
msg <- c(
23
- " x " = " The code to style seems to use Windows style line endings (CRLF)." ,
24
- " ! " = " styler currently only supports Unix style line endings (LF). " ,
25
- " i " = " Please change the EOL character in your editor to Unix style
23
+ x = " The code to style seems to use Windows style line endings (CRLF)." ,
24
+ `!` = " styler currently only supports Unix style line endings (LF). " ,
25
+ i = " Please change the EOL character in your editor to Unix style
26
26
and try again."
27
27
)
28
28
} else {
29
- msg <- c(" x " = " Styling failed" )
29
+ msg <- c(x = " Styling failed" )
30
30
}
31
31
cli :: cli_abort(msg , parent = e , call = NULL )
32
32
},
You can’t perform that action at this time.
0 commit comments