Skip to content

Commit

Permalink
fix snake case warning in example project names
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnMurray committed May 2, 2023
1 parent 642c167 commit c99f945
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/hello_world/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "examples__hello_world"
name = "examples_hello_world"
version = "0.0.0"
publish = false
edition = "2021"
Expand Down
1 change: 0 additions & 1 deletion examples/hello_world/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#![allow(non_snake_case)]
use busan::actor::{Actor, ActorInit};
use busan::config::ActorSystemConfig;
use busan::message::common_types::StringWrapper;
Expand Down
2 changes: 1 addition & 1 deletion examples/ping_pong/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "examples__ping-pong"
name = "examples_ping-pong"
version = "0.0.0"
publish = false
edition = "2021"
Expand Down
1 change: 0 additions & 1 deletion examples/ping_pong/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#![allow(non_snake_case)]
use busan::actor::{Actor, ActorInit, Context};
use busan::config::ActorSystemConfig;
use busan::message::common_types::{I32Wrapper, StringWrapper};
Expand Down

0 comments on commit c99f945

Please sign in to comment.