diff --git a/Cargo.toml b/Cargo.toml index 1bf1762..da69c63 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mapgen" -version = "0.1.1" +version = "0.1.2" authors = ["Krzysztof Langner "] description = "Map generator for games (dungeons, worlds etc.)" keywords = ["game", "map", "map-generator"] diff --git a/src/dungeon/cull_unreachable.rs b/src/dungeon/cull_unreachable.rs index 0632315..6f68a51 100644 --- a/src/dungeon/cull_unreachable.rs +++ b/src/dungeon/cull_unreachable.rs @@ -1,6 +1,6 @@ //! Remove unreachable areas from the map. //! -//! This modifier reuires starting position on the map. +//! This modifier reiquires starting position on the map. //! It will add wall on every tile which is not accessible from the starting point. //!