Skip to content

Commit 7f7f941

Browse files
committed
* forest.js (disambiguate): minor edit.
1 parent c7e20db commit 7f7f941

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

forest.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ var process_forest, forest_to_html, evaluate_forest;
1010
function is_ambiguous(f) { return f && f.left && !f.right; }
1111

1212
disambiguate = function disambiguate(f, gt) {
13-
if(f && is_ambiguous(f)) {
13+
if(is_ambiguous(f)) {
1414
var best = f.left, d = f.left;
1515
while(d = d.next) {
1616
best = cmp(d, best, gt) > 0 ? d : best;

0 commit comments

Comments
 (0)