Adding a 4th arg to foo function for consistency (#499)

When reading the Readme file I noticed that the first `foo` method has only 3 args but every other `foo` method has 4. Therefore, I am adding a 4th arg to the first `foo` method for consistency.
master
MarekMatejkaKCL 2017-01-28 02:49:23 +00:00 committed by Christopher Chedeau
parent 94b137ac47
commit 56f27a8ccf
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ critical piece the formatter needs for laying out and wrapping code.
For example, take the following code:
```js
foo(arg1, arg2, arg3);
foo(arg1, arg2, arg3, arg4);
```
That looks like the right way to format it. However, we've all run