diff options
Diffstat (limited to 'boil/library/TypeFactory.java')
-rw-r--r-- | boil/library/TypeFactory.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/boil/library/TypeFactory.java b/boil/library/TypeFactory.java index 432fc0f..be77f63 100644 --- a/boil/library/TypeFactory.java +++ b/boil/library/TypeFactory.java @@ -35,7 +35,7 @@ public class TypeFactory { String rtn = ""; rtn += String.format("t.%d", type_num-x); - for (int i = type_num-(x+1); i < type_num; ++i) { + for (int i = type_num-(x-1); i < type_num; ++i) { rtn += String.format(" t.%d", i); } |