Skip to content

Commit

Permalink
change parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
rakow committed May 13, 2024
1 parent 54d5679 commit 19abbe9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ private static double capacityHighway(int lanes) {

// Own assumption of increasing capacity with more lanes
// This is not covered by the HBS and is a very rare case
return (3913.3439999999996) * 1.3 / lanes;
return (3913.3439999999996 * 1.3) / lanes;
}

/**
Expand Down

0 comments on commit 19abbe9

Please sign in to comment.