Skip to content

Commit 5a6d642

Browse files
authored
Clarify javascript specifications on built-in methods for square-root (exercism#930)
1 parent 34eed9d commit 5a6d642

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
The idea is not to use the built-in javascript function `Math.sqrt(x)`, it's to build your own.
1+
The idea is not to use the built-in javascript functions such as `Math.sqrt(x)`, `x ** 0.5` or `x ** (1/2)`, it's to build your own.

exercises/square-root/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Check out the Wikipedia pages on [square root](https://en.wikipedia.org/wiki/Squ
88

99
Recall also that natural numbers are positive real whole numbers (i.e. 1, 2, 3 and up).
1010

11-
The idea is not to use the built-in javascript function `Math.sqrt(x)`, it's to build your own.
11+
The idea is not to use the built-in javascript functions such as `Math.sqrt(x)`, `x ** 0.5` or `x ** (1/2)`, it's to build your own.
1212

1313

1414
## Setup

0 commit comments

Comments
 (0)