From 6e6f16432b5f5f37bd0fdd7a6ebe0b612ef27831 Mon Sep 17 00:00:00 2001 From: nprimo Date: Tue, 28 Feb 2023 11:39:55 +0100 Subject: [PATCH] docs(physics): improve subject - clarify the scope of the function - fix a small grammar error --- subjects/physics/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subjects/physics/README.md b/subjects/physics/README.md index ccd3a1f5..c5ff1d20 100644 --- a/subjects/physics/README.md +++ b/subjects/physics/README.md @@ -17,7 +17,7 @@ So he wants to know what the acceleration of that object is, depending on its pr - distance xx - time xx -Create a function named `getAcceleration` that calculates the velocity of a given object. For example: +Create a function named `getAcceleration` that calculates the acceleration of a given object. For example: ```js { f: 10, @@ -28,7 +28,7 @@ Create a function named `getAcceleration` that calculates the velocity of a give d: 10 } ``` -If its not possible to calculate it, it must return the string `"impossible"`. +If it is not possible to calculate it, it must return the string `"impossible"`. ### Formulas