diff options
author | Tom Hacohen <tom@stosb.com> | 2015-05-20 14:02:56 +0100 |
---|---|---|
committer | Tom Hacohen <tom@stosb.com> | 2015-05-20 16:10:50 +0100 |
commit | 99cb7e9ba7fe257e265b821febbacd2e8aff0616 (patch) | |
tree | 3f29c98f44660491fa384d0db8299d43e2ce76a8 | |
parent | dfbb777bf144c528eeaffe7b85a5e90957eeba94 (diff) |
Eo base: Correct comment regarding the finalizer.
-rw-r--r-- | src/lib/eo/eo_base.eo | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/eo/eo_base.eo b/src/lib/eo/eo_base.eo index 5c7123c4e5..b81ed6e3f9 100644 --- a/src/lib/eo/eo_base.eo +++ b/src/lib/eo/eo_base.eo | |||
@@ -53,7 +53,7 @@ Should not be used with #eo_do. Only use it with #eo_do_super. */ | |||
53 | } | 53 | } |
54 | finalize { | 54 | finalize { |
55 | /*@ Called at the end of #eo_add. Should not be called, just overridden. */ | 55 | /*@ Called at the end of #eo_add. Should not be called, just overridden. */ |
56 | return: Eo *; /*@ The new object created, can be NULL if the finalize func decided to abort (though it should free the created object on it's own). */ | 56 | return: Eo *; /*@ The new object created, can be NULL if aborting */ |
57 | } | 57 | } |
58 | wref_add { | 58 | wref_add { |
59 | /*@ Add a new weak reference to obj. | 59 | /*@ Add a new weak reference to obj. |