summaryrefslogtreecommitdiffhomepage
path: root/vala.html.markdown
diff options
context:
space:
mode:
authorMilo Gilad <milogaccnts@gmail.com>2017-08-26 09:05:24 -0400
committerMilo Gilad <milogaccnts@gmail.com>2017-08-26 09:05:24 -0400
commit68951045a37e01b677510cd44386850a69310325 (patch)
tree9410ef63bc11ca031c8b604256957503b012b0be /vala.html.markdown
parentf6de93559f8d2b725d307675d4b333b37a2fd6bc (diff)
Small improvements
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 a7fd1131..6e1a215f 100755
--- a/vala.html.markdown
+++ b/vala.html.markdown
@@ -323,7 +323,7 @@ class Animal : GLib.Object {
// All GLib.Objects have a signal "notify" emitted when a property changes.
// If you specify a specific property, replace all underscores with dashes
- // to conform with the GObject naming convention.
+ // to conform to the GObject naming convention.
rabbit.notify["eyes"].connect((s, p) => { // Remove the ["eyes"] for all
stdout.printf("Property '%s' has changed!\n", p.name);