```js
-function linearCongGenerator (r0, a, c, m, n) {
+function linearCongGenerator(r0, a, c, m, n) {
// Good luck!
}
```
diff --git a/curriculum/challenges/english/08-coding-interview-prep/rosetta-code/long-multiplication.md b/curriculum/challenges/english/08-coding-interview-prep/rosetta-code/long-multiplication.md
index 745b0a87c8..7d550f997a 100644
--- a/curriculum/challenges/english/08-coding-interview-prep/rosetta-code/long-multiplication.md
+++ b/curriculum/challenges/english/08-coding-interview-prep/rosetta-code/long-multiplication.md
@@ -8,12 +8,12 @@ challengeType: 5
Explicitly implement long multiplication.
This is one possible approach to arbitrary-precision integer algebra.
-Note: In JavaScript, arithmetic operations are inaccurate with large numbers, so you will have to implement precise multiplication yourself.
## Instructions
Write a function that takes two strings of large numbers as parameters. Your function should return the product of these two large numbers as a string.
+Note: In JavaScript, arithmetic operations are inaccurate with large numbers, so you will have to implement precise multiplication yourself.
## Tests
@@ -45,7 +45,7 @@ tests:
```js
-function mult (strNum1, strNum2) {
+function mult(strNum1, strNum2) {
// Good luck!
}
```