From 25400daa1501328f8cc1cc4464d1493ebb6a7f6e Mon Sep 17 00:00:00 2001 From: davhojt Date: Sun, 3 Jul 2022 01:47:01 +0300 Subject: [PATCH] docs(ultimatedivmod): correct grammar --- subjects/ultimatedivmod/README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/subjects/ultimatedivmod/README.md b/subjects/ultimatedivmod/README.md index ee236c6f..2559e816 100644 --- a/subjects/ultimatedivmod/README.md +++ b/subjects/ultimatedivmod/README.md @@ -2,7 +2,7 @@ ### Instructions -- Write a function that will be formatted as below. +Create the following function. ### Expected function @@ -11,10 +11,9 @@ func UltimateDivMod(a *int, b *int) { } ``` - -- This function will divide the `int` **a** and **b**. -- The result of this division will be stored in the `int` pointed by **a**. -- The remainder of this division will be stored in the `int` pointed by **b**. +`UltimateDivMod` should divide the dereferenced value of `a` by the dereferenced value of `b`. +- Store the result of the division in the `int` which `a` points to. +- Store the remainder of the division in the `int` which `b` points to. ### Usage