Skip to content

Commit 9bc75c1

Browse files
committed
Update hints file
1 parent 0896ce4 commit 9bc75c1

File tree

1 file changed

+7
-8
lines changed
  • exercises/concept/lucians-luscious-lasagna/.docs

1 file changed

+7
-8
lines changed

exercises/concept/lucians-luscious-lasagna/.docs/hints.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,21 @@
1313
## 2. Calculate the remaining oven time in minutes
1414

1515
- You need to define a [function][functions] with a single argument.
16-
- You have to [implicitly return an integer][return] from a function.
16+
- You have to return from a function.
1717
- The function's argument is an [integer][integers].
1818
- You can use the [mathematical operator for subtraction][operators] to subtract values.
1919

2020
## 3. Calculate the preparation time in minutes
2121

2222
- You need to define a [function][functions] with a single argument.
23-
- You have to [implicitly return an integer][return] from a function.
23+
- You have to return from a function.
2424
- The function's argument is an [integer][integers].
2525
- You can use the [mathematical operator for multiplication][operators] to multiply values.
2626

2727
## 4. Calculate the total working time in minutes
2828

2929
- You need to define a [function][functions] with two arguments.
30-
- You have to [implicitly return an integer][return] from a function.
30+
- You have to return an integer from a function.
3131
- The function's argument is an [integer][integers].
3232
- You can invoke one of the other functions you've defined previously.
3333
- You can use the [mathematical operator for addition][operators] to add values.
@@ -39,8 +39,7 @@
3939

4040
TODO CHANGE TO HASKELL LINKS:
4141

42-
[functions]: https://hexdocs.pm/elixir/modules-and-functions.html#function-definition
43-
[return]: https://stackoverflow.com/questions/37445838/returning-values-in-elixir
44-
[operators]: https://hexdocs.pm/elixir/basic-types.html#basic-arithmetic
45-
[integers]: https://hexdocs.pm/elixir/basic-types.html
46-
[string]: https://hexdocs.pm/elixir/basic-types.html#strings
42+
[functions]: https://www.haskell.org/tutorial/functions.html
43+
[operators]:https://www.tutorialspoint.com/haskell/haskell_basic_operators.htm
44+
[integers]: https://hackage.haskell.org/package/base/docs/Data-Int.html
45+
[string]: https://hackage.haskell.org/package/base/docs/Data-String.html

0 commit comments

Comments
 (0)