From f88ba67e86498bcb8bac8f2e121194180575d3e8 Mon Sep 17 00:00:00 2001 From: eslopfer Date: Mon, 20 Mar 2023 11:32:14 +0000 Subject: [PATCH] docs(basicatoi): replace preposition for clarity --- subjects/basicatoi/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/basicatoi/README.md b/subjects/basicatoi/README.md index 174ded4a..39325ace 100644 --- a/subjects/basicatoi/README.md +++ b/subjects/basicatoi/README.md @@ -2,7 +2,7 @@ ### Instructions -- Write a function that simulates the behaviour of the `Atoi` function in Go. `Atoi` transforms a number defined as a `string` in a number defined as an `int`. +- Write a function that simulates the behaviour of the `Atoi` function in Go. `Atoi` transforms a number defined as a `string` into a number defined as an `int`. - `Atoi` returns `0` if the `string` is not considered as a valid number. For this exercise **only valid** `string` will be tested. They will only contain one or several digits as characters.