diff options
author | Milo Gilad <milogaccnts@gmail.com> | 2017-08-26 08:49:38 -0400 |
---|---|---|
committer | Milo Gilad <milogaccnts@gmail.com> | 2017-08-26 08:49:38 -0400 |
commit | b86786023cce9b664dc7f529e1c7bea47356b8e3 (patch) | |
tree | 8ad36a26e2e9f7fb8f3f66d303add7dda8119897 /vala.html.markdown | |
parent | 82a37a456ab14869a0d78c859c2acc22bee06b18 (diff) |
Clarifications in delegates
Diffstat (limited to 'vala.html.markdown')
-rwxr-xr-x | vala.html.markdown | 2 |
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"); } |