Skip to content

Commit 93ef626

Browse files
committed
fixing spaces and tabs
1 parent 97f3dae commit 93ef626

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

readme.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* Idan Gazit [@idangazit](http://twitter.com/idangazit), [github](https://github.com/idangazit)
1212
* Leo Balter [@leobalter](http://twitter.com/leobalter), [github](https://github.com/leobalter)
1313
* Breno Oliveira [@garu_rj](http://twitter.com/garu_rj), [github](https://github.com/garu)
14-
* Leo Beto Souza [@leobetosouza](http://twitter.com/@leobetosouza), [github](https://github.com/leobetosouza)
14+
* Leo Beto Souza [@leobetosouza](http://twitter.com/leobetosouza), [github](https://github.com/leobetosouza)
1515

1616
## All code in any code-base should look like a single person typed it, no matter how many people contributed.
1717

@@ -989,16 +989,16 @@ Projects _must_ include some form of unit, reference, implementation or function
989989

990990
```javascript
991991
// Bad
992-
function calculaValor(arg1, arg2) {
992+
function calculaValor( arg1, arg2 ) {
993993
var retorno = arg1 + arg2;
994994
return retorno;
995995
}
996996

997997
// Good
998-
console.log("Hello World");
998+
console.log( "Hello World" );
999999

10001000
// Good as well
1001-
console.log("Oi Mundo");
1001+
console.log( "Oi Mundo" );
10021002

10031003
```
10041004

0 commit comments

Comments
 (0)