From 81016e84cd846e9a4bee4ea0f5233b9758303849 Mon Sep 17 00:00:00 2001 From: eslopfer Date: Mon, 3 Apr 2023 12:00:50 +0100 Subject: [PATCH] docs(banner): specify what float to use --- subjects/banner/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subjects/banner/README.md b/subjects/banner/README.md index 1e85f00a..424c0b98 100644 --- a/subjects/banner/README.md +++ b/subjects/banner/README.md @@ -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