Skip to content

Commit 7de26f5

Browse files
committed
Tutorial - clearly specify that function names should start with a lower case letter
Fixes #3199
1 parent 8cf832d commit 7de26f5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

etc/doc/tutorial/05.5-Functions.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,9 @@ we wish to give to our function. We didn't have to call it `foo`, we could
2424
have called it anything we want such as `bar`, `baz` or ideally
2525
something meaningful to you like `main_section` or `lead_riff`.
2626

27-
Remember to prepend a colon `:` to the name of your function when you define
28-
it.
27+
Remember to prepend a colon `:` to the name of your function when you
28+
define it. Function names should also start with a lower case letter, so
29+
use `:foo` rather than `:Foo`.
2930

3031
## Calling functions
3132

0 commit comments

Comments
 (0)