From bcb6760a674bec93d0140aa115de453cae042bb6 Mon Sep 17 00:00:00 2001 From: Brian Shaginaw Date: Fri, 28 Apr 2023 10:28:22 -0400 Subject: [PATCH] Fix truncated doc comment --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index a61d4d49..44781af9 100755 --- a/src/lib.rs +++ b/src/lib.rs @@ -37,7 +37,7 @@ pub mod noise { } /// bracket-pathfinding (in conjunction with bracket-algorithm-traits) provides /// pathfinding functionality. A-Star (A*) and Dijkstra are supported. It also -// provides field of view (FOV) functionality. +/// provides field of view (FOV) functionality. pub mod pathfinding { pub use bracket_pathfinding::prelude::*; }