summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMilo Gilad <milogaccnts@gmail.com>2017-08-26 08:49:38 -0400
committerMilo Gilad <milogaccnts@gmail.com>2017-08-26 08:49:38 -0400
commitb86786023cce9b664dc7f529e1c7bea47356b8e3 (patch)
tree8ad36a26e2e9f7fb8f3f66d303add7dda8119897
parent82a37a456ab14869a0d78c859c2acc22bee06b18 (diff)
Clarifications in delegates
-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");
}