Skip to content

Commit f409f49

Browse files
committed
Making clearer distinction on exported values
1 parent 844adc3 commit f409f49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ function sumThree(a, b, c) {
392392
export { sumTwo, sumThree };
393393
```
394394

395-
We can also export a value simply by using the `export` keyword:
395+
We can also export functions, objects and values (etc.) simply by using the `export` keyword:
396396

397397
```javascript
398398
export function sumTwo(a, b) {

0 commit comments

Comments
 (0)