diff options
Diffstat (limited to 'planetwars-server/src/modules/bots.rs')
-rw-r--r-- | planetwars-server/src/modules/bots.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/planetwars-server/src/modules/bots.rs b/planetwars-server/src/modules/bots.rs index 4aba168..6a2883c 100644 --- a/planetwars-server/src/modules/bots.rs +++ b/planetwars-server/src/modules/bots.rs @@ -24,7 +24,7 @@ pub fn save_code_string( container_digest: None, }; let version = db::bots::create_bot_version(&new_code_bundle, conn)?; - // Leave this coupled for now - this is how the behaviour was bevore. + // Leave this coupled for now - this is how the behaviour was before. // It would be cleaner to separate version setting and bot selection, though. if let Some(bot_id) = bot_id { db::bots::set_active_version(bot_id, Some(version.id), conn)?; |