Skip to content

Commit

Permalink
ProjectFiles: shorten len in recursive getLang
Browse files Browse the repository at this point in the history
  • Loading branch information
kitbellew committed Nov 27, 2023
1 parent 7ca02a6 commit 9c7f79d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ object ProjectFiles {
else {
val langIdx = srcIdx + 2
val found = phaseLabels.contains(dirs(srcIdx + 1))
if (found) Some(dirs(langIdx)) else getLang(dirs, langIdx)
if (found) Some(dirs(langIdx)) else getLang(dirs, srcIdx)
}
}

Expand Down

0 comments on commit 9c7f79d

Please sign in to comment.