snippet_provider: Use proper casing of VsCode in identifiers (#29038)

This PR renames some identifiers in the `snippet_provider` to use the
correct casing of `VsCode`.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2025-04-18 08:11:54 -04:00 committed by GitHub
parent 3538acec7c
commit 269f6403dd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 12 additions and 12 deletions

View file

@ -37,7 +37,7 @@ impl SnippetRegistry {
}
pub fn register_snippets(&self, file_path: &Path, contents: &str) -> Result<()> {
let snippets_in_file: crate::format::VSSnippetsFile =
let snippets_in_file: crate::format::VsSnippetsFile =
serde_json_lenient::from_str(contents)?;
let kind = file_path
.file_stem()