From f27877b5c9f46fc07f4a9b4f03df488ca4decb38 Mon Sep 17 00:00:00 2001 From: davhojt Date: Sun, 16 Jul 2023 20:25:50 +0100 Subject: [PATCH] feat(IntOperations): correct grammar --- subjects/java/piscine/IntOperations/README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/subjects/java/piscine/IntOperations/README.md b/subjects/java/piscine/IntOperations/README.md index 4daabd405..b42bb7593 100644 --- a/subjects/java/piscine/IntOperations/README.md +++ b/subjects/java/piscine/IntOperations/README.md @@ -4,10 +4,12 @@ Create a file `IntOperations.java`. -Write a function `addTwoIntegers` that returns the sum of two integers passed as parameter. -Write a function `substractTwoIntegers` that returns subtraction of two integers passed as parameter. -Write a function `multiplyTwoIntegers` that returns the multiplication of two integers passed as parameter. -Write a function `divideTwoIntegers` that returns the Euclidian division of two integers passed as parameter. We ignore the divide by 0 case. +Write the following functions: + +- `addTwoIntegers` that returns the sum of two integers passed as parameter. +- `substractTwoIntegers` that subtracts the second parameter from the first parameter, and returns the result. +- `multiplyTwoIntegers` that returns the multiplication of two integers passed as parameter. +- `divideTwoIntegers` that returns the Euclidian division of two integers passed as parameter. We ignore the divide by 0 case. ### Expected Functions