Skip to content

Commit 4f02415

Browse files
authored
Fix syntax error
Adds a missing single quote thus fixing a syntax error.
1 parent b7daf39 commit 4f02415

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2090,7 +2090,7 @@ The `Dog` class receives two arguments, `name` since it extends `Animal`, and `s
20902090

20912091
```javascript
20922092
// index.js
2093-
console.log('running index.js);
2093+
console.log('running index.js');
20942094
import { sum } from './sum.js';
20952095
console.log(sum(1, 2));
20962096

0 commit comments

Comments
 (0)