Skip to content

Commit 42e45f7

Browse files
TwoFistedJusticemybrainishuge
authored andcommitted
Clarify instructions on divide (JS-Challenges#63)
* Clarify instructions on divide Previously it was not clear that the prompt was seeking an approximate quotient, as opposed to a precise one. * Remove spaces in word 'function' DOH!
1 parent 866edde commit 42e45f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/recursion.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ var multiply = function(x, y) {
7171
};
7272

7373
// 13. Write a function that divides two numbers without using the / operator or
74-
// Math methods.
74+
// Math methods to arrive at an approximate quotient (ignore decimal endings).
7575
var divide = function(x, y) {
7676
};
7777

0 commit comments

Comments
 (0)