docs(banner): specify what float to use

This commit is contained in:
eslopfer 2023-04-03 12:00:50 +01:00
parent 7ceb5ce8dc
commit 81016e84cd
1 changed files with 2 additions and 2 deletions

View File

@ -29,8 +29,8 @@ A `type` called `Callback` will also be provided. It is a function which is goin
You will have to create the following callback functions:
- `div`: which converts the reference strings to `float`s and returns the `Result`, as the division of the `float`s or the standard (std) error: `ParseFloatError`.
- `rem`: which converts the reference strings to `float`s and returns the `Result`, as the remainder of the division of the `float`s or the standard (std) error `ParseFloatError`.
- `div`: which converts the reference strings to `f32`s and returns the `Result`, as the division of the `f32`s or the standard (std) error: `ParseFloatError`.
- `rem`: which converts the reference strings to `f32`s and returns the `Result`, as the remainder of the division of the `f32`s or the standard (std) error `ParseFloatError`.
### Expected Function