Преглед на файлове

Remove redundant extern crate calls from chapter 3 body.

Herbert Wolverson преди 5 години
родител
ревизия
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;