tweak to documentation

This commit is contained in:
Djairo Hougee 2023-05-12 14:42:26 +02:00
parent c1bbc9a188
commit e3e4953560
1 changed files with 0 additions and 2 deletions

View File

@ -155,8 +155,6 @@ impl Default for Config {
impl Config {
/// This function returns the index of a given player identity in the player_priorities hashmap.
/// If the given identity is not in the map, the value of i32::MAX is returned instead.
///
/// TODO: using a HashMap would be more efficient i think.
pub fn find_player_priorities_idx(&self, name: &str) -> u8 {
match self.player_priorities.get(name) {
Some(val) => *val,