mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-12 21:32:40 +00:00
extension: Fix manifest filename in error message (#22906)
This PR fixes the incorrect filename for the extension manifest being used in an error message. It should be `extension.toml` and not `extension.json`. Release Notes: - N/A
This commit is contained in:
parent
5c239be757
commit
4aa4a40e2f
1 changed files with 1 additions and 1 deletions
|
@ -175,7 +175,7 @@ impl ExtensionManifest {
|
|||
.await
|
||||
.with_context(|| format!("failed to load {extension_name} extension.toml"))?;
|
||||
toml::from_str(&manifest_content)
|
||||
.with_context(|| format!("invalid extension.json for extension {extension_name}"))
|
||||
.with_context(|| format!("invalid extension.toml for extension {extension_name}"))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue