Skip to content

Commit

Permalink
Merge pull request #197 from fermyon/tpmccallum-patch-1
Browse files Browse the repository at this point in the history
Remove double space from create message
  • Loading branch information
itowlson authored May 8, 2024
2 parents b60be9c + c10c581 commit 6b29ca0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/key_value.rs
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ impl CreateCommand {
.create_key_value_store(&self.name, None)
.await
.with_context(|| format!("Error creating key value store '{}'", self.name))?;
println!(r#"Key value store "{}" created"#, self.name);
println!(r#"Key value store "{}" created"#, self.name);
Ok(())
}
}
Expand Down

0 comments on commit 6b29ca0

Please sign in to comment.