Skip to content

Commit 595d976

Browse files
authored
Merge pull request aimacode#77 from sbonn/master
Corrected indentation Section 6 'backtrack'
2 parents 308a051 + c85a286 commit 595d976

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

md/Backtracking-Search.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ __function__ BACKTRACK(_assignment_, _csp_) __returns__ a solution, or failure
1616
      _result_ ← BACKTRACK(_assignment_, _csp_)
1717
      __if__ _result_ ≠ _failure_ __then__
1818
       __return__ _result_
19-
   remove \{_var_ = _value_\} and _inferences_ from _assignment_
19+
     remove \{_var_ = _value_\} and _inferences_ from _assignment_
2020
 __return__ _failure_
2121

2222
---

0 commit comments

Comments
 (0)