Skip to content

Commit 7f06bba

Browse files
committed
Remove unecessary spacing in markup
1 parent d0e0dbf commit 7f06bba

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

book/src/chapter_9.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -509,7 +509,7 @@ RunState::ShowInventory => {
509509
let item_entity = result.1.unwrap();
510510
let names = self.ecs.read_storage::<Name>();
511511
let mut gamelog = self.ecs.fetch_mut::<gamelog::GameLog>();
512-
gamelog.entries.push(format!("You try to use {}, but it isn't written yet", names.get(item_entity) .unwrap().name));
512+
gamelog.entries.push(format!("You try to use {}, but it isn't written yet", names.get(item_entity).unwrap().name));
513513
newrunstate = RunState::AwaitingInput;
514514
}
515515
}

0 commit comments

Comments
 (0)