Use correct file extension for Haskell suggestions (#9825)

This PR fixes the file extension used for suggesting the Haskell
extension.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2024-03-26 14:21:03 -04:00 committed by GitHub
parent b8ef97015c
commit cd32ef64ff
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -32,7 +32,7 @@ pub fn suggested_extension(file_extension_or_name: &str) -> Option<Arc<str>> {
("gleam", "gleam"), ("gleam", "gleam"),
("graphql", "gql"), ("graphql", "gql"),
("graphql", "graphql"), ("graphql", "graphql"),
("haskell", "haskell"), ("haskell", "hs"),
("java", "java"), ("java", "java"),
("kotlin", "kt"), ("kotlin", "kt"),
("latex", "tex"), ("latex", "tex"),