Просмотр исходного кода

Remove redundant extern crate calls from chapter 3 body.

Herbert Wolverson 5 лет назад
Родитель
Сommit
97cc9e0a07
1 измененных файлов с 0 добавлено и 2 удалено
  1. 0 2
      book/src/chapter_3.md

+ 0 - 2
book/src/chapter_3.md

@@ -157,9 +157,7 @@ Run the program (`cargo run`) now, and you have a player in a map - and can move
 The full program now looks like this:
 
 ```rust
-extern crate rltk;
 use rltk::{Console, GameState, Rltk, RGB, VirtualKeyCode};
-extern crate specs;
 use specs::prelude::*;
 #[macro_use]
 extern crate specs_derive;