From 3a5d5c9ffdc350bf17e495d679566542f3735393 Mon Sep 17 00:00:00 2001 From: davhojt Date: Sun, 16 Jul 2023 20:26:38 +0100 Subject: [PATCH] feat(FloatOperations): correct grammar --- subjects/java/piscine/FloatOperations/README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/subjects/java/piscine/FloatOperations/README.md b/subjects/java/piscine/FloatOperations/README.md index af3e5d583..24b3ef968 100644 --- a/subjects/java/piscine/FloatOperations/README.md +++ b/subjects/java/piscine/FloatOperations/README.md @@ -4,8 +4,10 @@ Create a file `FloatOperations.java`. -Write a function `divideTwoFloats` that returns the float division of two floats passed as parameter. -Write a function `addTwoFloats` that returns the sum of two floats passed as parameter. +Write the following functions: + +- Write a function `divideTwoFloats` that returns the float division of two floats passed as parameter. +- Write a function `addTwoFloats` that returns the sum of two floats passed as parameter. ### Expected Functions