Skip to content

Commit 76811d3

Browse files
author
ochafik
committed
nit spaces
1 parent 9dd1fdc commit 76811d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

common/minja/minja.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1246,7 +1246,7 @@ class SubscriptExpr : public Expression {
12461246
}
12471247
return result;
12481248

1249-
} else if (target_value.is_array()) {
1249+
} else if (target_value.is_array()) {
12501250
auto result = Value::array();
12511251
for (int64_t i = start; step > 0 ? i < end : i > end; i += step) {
12521252
result.push_back(target_value.at(i));
@@ -2127,7 +2127,7 @@ class Parser {
21272127
}
21282128
}
21292129
}
2130-
2130+
21312131
if ((has_first_colon || has_second_colon) && (start || end || step)) {
21322132
index = std::make_shared<SliceExpr>(slice_loc, std::move(start), std::move(end), std::move(step));
21332133
} else {

0 commit comments

Comments
 (0)