Skip to content

Commit e039bd2

Browse files
committed
remove unnecessary braces
1 parent 0290ba5 commit e039bd2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

fp.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@ function increment(n) {
33
}
44

55
function my_objective(arr, f) {
6-
for (let i = 0; i < arr.length; ++i) {
6+
for (let i = 0; i < arr.length; ++i)
77
arr[i] = f(arr[i])
8-
}
98
}
109

1110
function main() {

0 commit comments

Comments
 (0)