Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove ambiguity in example for
total_time_in_minutes
According to the example before, ```gleam pub fn total_time_in_minutes(layers: Int, elapsed: Int) {preparation_time_in_minutes(layers) + remaining_minutes_in_oven(elapsed)} ``` and ```gleam pub fn total_time_in_minutes(layers: Int, elapsed: Int) {preparation_time_in_minutes(layers) + elapsed} ``` would both be valid, but only the latter is correct.
- Loading branch information