Update index.md to add comma (#33019)

Add an Oxford comma on line 41
pull/33954/head
AnonProgrammer007 2018-10-31 18:08:17 -05:00 committed by Paul Happ
parent ea7ab5e2dc
commit 97920cca8e
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ int power(int x, unsigned int y) {
## Modular Exponentiation
Given three numbers x, y and p, compute (x^y) % p
Given three numbers x, y, and p, compute (x^y) % p
```C
int power(int x, unsigned int y, int p) {