Skip to content

Commit f48cad8

Browse files
committed
garden
1 parent 12b62ce commit f48cad8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

devenv/src/devenv.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -681,7 +681,7 @@ impl Devenv {
681681
}
682682

683683
pub async fn build(&mut self, attributes: &[String]) -> Result<()> {
684-
let span = info_span!("build", devenv.user_message = "Building...");
684+
let span = info_span!("build", devenv.user_message = "Building");
685685
async move {
686686
self.assemble(false).await?;
687687
let attributes: Vec<String> = if attributes.is_empty() {
@@ -912,7 +912,7 @@ impl Devenv {
912912
// Parse the path and type from the first value
913913
let key_parts: Vec<&str> = chunk[0].split(':').collect();
914914
if key_parts.len() < 2 {
915-
miette::bail!("Invalid option format: '{}'. Must include type, e.g. 'languages.rust.version:string'. Supported types: {}",
915+
miette::bail!("Invalid option format: '{}'. Must include type, e.g. 'languages.rust.version:string'. Supported types: {}",
916916
chunk[0], SUPPORTED_TYPES.join(", "));
917917
}
918918

0 commit comments

Comments
 (0)