1
0
Fork 0
mirror of synced 2024-11-22 07:25:33 -05:00

Updated Code Style Guide (markdown)

Eric Nielsen 2022-01-11 19:52:26 -05:00
parent 1cc3006502
commit f438642d9b

@ -59,9 +59,10 @@ Functions
--------- ---------
Use POSIX syntax: Use POSIX syntax:
``` ```diff
foo() { -function foo {
print 'bar' +foo() {
print bar
} }
``` ```