summaryrefslogtreecommitdiffhomepage
path: root/vala.html.markdown
diff options
context:
space:
mode:
Diffstat (limited to 'vala.html.markdown')
-rwxr-xr-xvala.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/vala.html.markdown b/vala.html.markdown
index 91059a92..130ce7a9 100755
--- a/vala.html.markdown
+++ b/vala.html.markdown
@@ -189,7 +189,7 @@ string? ok_to_be_null(int? test_int) { } // "?" denotes possible null value
delegate void DelegateDemo(char char_a);
-void delegate_match(char char_a) { // Matches the delegate's signature
+void delegate_match(char char_a) { // Matches DelegateDemo's signature
stdout.printf("%d\n");
}