summaryrefslogtreecommitdiff
path: root/solver.h
diff options
context:
space:
mode:
Diffstat (limited to 'solver.h')
-rw-r--r--solver.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/solver.h b/solver.h
index 65cf87e..4bb4fa6 100644
--- a/solver.h
+++ b/solver.h
@@ -3,7 +3,7 @@
*
* See the README file for copyright information and how to reach the author.
*
- * $Id: solver.h 11 2005-10-28 01:00:01Z tom $
+ * $Id: solver.h 18 2005-11-03 21:48:08Z tom $
*/
#ifndef VDR_SUDOKU_SOLVER_H
@@ -59,12 +59,12 @@ namespace Sudoku
* \code
* Puzzle puzzle; // Generate an empty puzzle without givens.
* Solver solver(puzzle);
- * solver.find_next_solution(true);
+ * solver.find_next_solution();
* while (solver.solution_is_valid())
* {
* // Do something with the puzzle.
* ...
- * solver.find_next_solution(true);
+ * solver.find_next_solution();
* }
* \endcode
*/