lib/ai: fix typo in doc
authorAlexis Laferrière <alexis.laf@xymus.net>
Tue, 16 Sep 2014 14:54:33 +0000 (10:54 -0400)
committerAlexis Laferrière <alexis.laf@xymus.net>
Thu, 25 Sep 2014 15:31:37 +0000 (11:31 -0400)
Signed-off-by: Alexis Laferrière <alexis.laf@xymus.net>

lib/ai/search.nit

index 248ab7c..f279d4f 100644 (file)
@@ -99,7 +99,7 @@ interface SearchProblem[S: Object, A]
        # An heuristic of the estimated `cost` going from `state` to a goal state.
        #
        # Is is expected that the heuristic is *admissible*, it means its is an
-       # optimistic estimation that never an over-estimate, thus is cannot be#
+       # optimistic estimation and never an over-estimate, thus is cannot be
        # higher than the lowest possible remaining cost.
        # See `SearchSolver::do_revisit` for details.
        #