Skip to content
This repository was archived by the owner on Jul 10, 2025. It is now read-only.

Commit faf374c

Browse files
authored
change to pascal case for service names (#96)
1 parent 2f4cefc commit faf374c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "marine"
33
description = "Fluence Marine command line tool"
4-
version = "0.6.8"
4+
version = "0.6.9"
55
authors = ["Fluence Labs"]
66
repository = "https://github.com/fluencelabs/marine/tools/cli"
77
license = "Apache-2.0"

tools/cli/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ fn aqua(args: &clap::ArgMatches<'_>) -> Result<(), anyhow::Error> {
107107
service_name.to_string_lossy()
108108
}
109109
};
110-
let service_name = service_name.to_class_case();
110+
let service_name = service_name.to_pascal_case();
111111
match args.value_of(args::SERVICE_ID) {
112112
Some(id) => println!(r#"service {}("{}"):"#, service_name, id),
113113
None => println!("service {}:", service_name),

0 commit comments

Comments
 (0)