Merge pull request #206 from mjul/patch-1

Fix "she-bang" typo
pull/214/head
Wilfred Hughes 2022-03-30 09:11:22 +07:00 committed by GitHub
commit d1c25576ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

@ -254,7 +254,7 @@ mod tests {
fn test_guess_by_emacs_mode_second_line() {
let path = Path::new("foo");
assert_eq!(
guess(path, "!#/bin/bash\n; -*- mode: Lisp; -*-"),
guess(path, "#!/bin/bash\n; -*- mode: Lisp; -*-"),
Some(CommonLisp)
);
}