This commit is contained in:
Toby Li 2023-04-03 14:28:06 -07:00 committed by GitHub
commit 013e90e812
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ public class NumberFn extends SemanticFn {
if (tree.children.size() > 1) {
requests = new ArrayList<String>();
for (int i = 1; i < tree.children.size(); i++)
requests.add(tree.child(1).value);
requests.add(tree.child(i).value);
}
}