Skip to content

Commit

Permalink
Fix typo in Rust SDK Test
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshd committed Jul 27, 2020
1 parent c357d8d commit 8b4c100
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/sdk/rust/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ fn run() -> Result<(), String> {
.alpha()
.get_player_count()
.map_err(|e| format!("Could not run GetConnectedPlayers(): {}. Exiting!", e))?;
println!("Cuurent player count: {}", player_count);
println!("Current player count: {}", player_count);

println!("Decreasing the player count...");
let removed = sdk
Expand All @@ -173,7 +173,7 @@ fn run() -> Result<(), String> {
.alpha()
.get_player_count()
.map_err(|e| format!("Could not GetPlayerCount(): {}. Exiting!", e))?;
println!("Cuurent player count: {}", player_count);
println!("Current player count: {}", player_count);

for i in 0..1 {
let time = i * 5;
Expand Down

0 comments on commit 8b4c100

Please sign in to comment.