From f55040cc2baf1c7b162c8956024e86339fd2f961 Mon Sep 17 00:00:00 2001 From: Garrit Franke Date: Sun, 7 Feb 2021 14:25:49 +0100 Subject: [PATCH] docs: fix function example --- docs/concepts/functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/concepts/functions.md b/docs/concepts/functions.md index ae9c062..b433359 100644 --- a/docs/concepts/functions.md +++ b/docs/concepts/functions.md @@ -7,7 +7,7 @@ Sabre code uses snake_case as the conventional style for function and variable n ``` fn main() { println("Hello, world!") - anotherFunction() + another_function() } fn another_function() {