I followed the quick fix link from VS Code and was prompted to Create a new page.

webertk421
2021-02-11 17:56:13 -05:00
parent e3dba66cb1
commit 01ffd6566c

16
SC2113.md Normal file

@@ -0,0 +1,16 @@
Instead of
``` sh
function quit {
exit
}
```
...add the parenthesis to the function name and remove the word "function":
``` sh
quit() {
exit
}
```