Skip to content

Commit c7afb4e

Browse files
committed
Merge branch 'hotfix/1.0.1'
2 parents b33d168 + 19ffef7 commit c7afb4e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@ git flow is the set of extensions of git
33

44
## Releases
55
### 1.0.0
6+
7+
### 1.0.1

index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ console.log("Collaborating in this feature");
44
var x = 10;
55

66
const calc = (a, b) => {
7-
console.log(a+b);
7+
console.log( a + b );
88
}
99

1010
calc(4, 5);
1111

1212

1313
const multi = (a, b) => {
14-
console.log(a*b);
14+
console.log( a * b );
1515
}
1616

1717
multi(4, 5);

0 commit comments

Comments
 (0)