Skip to content

Commit 1eb6356

Browse files
committed
Terminate sentences with periods.
1 parent dcfe0d6 commit 1eb6356

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

exercises/square-root/instructions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ Your task is to calculate the square root of a given number.
88

99
Here are some approaches you could use.
1010

11-
- Linear or binary search for a number that gives the input number when squared
12-
- Successive approximation using Newton's or Heron's method
13-
- Calculating one digit at a time or one bit at a time
11+
- Linear or binary search for a number that gives the input number when squared.
12+
- Successive approximation using Newton's or Heron's method.
13+
- Calculating one digit at a time or one bit at a time.
1414

1515
You can check out the Wikipedia pages on [integer square root][integer-square-root] and [methods of computing square roots][computing-square-roots] to help with choosing a method of calculation.
1616

0 commit comments

Comments
 (0)