diff options
author | Paulo Moura <pmoura@logtalk.org> | 2017-02-21 12:00:24 +0000 |
---|---|---|
committer | ven <vendethiel@hotmail.fr> | 2017-02-21 13:00:24 +0100 |
commit | 5d55924bdcce28882eefb62b755d245f26dec38c (patch) | |
tree | a8719faac40903b637167c521606a708b9c6c0e3 /logtalk.html.markdown | |
parent | dc34cd25a9308435bae75099dbd8200c82efdc88 (diff) |
[logtalk/en] fix typo in example code (#2669)
Diffstat (limited to 'logtalk.html.markdown')
-rw-r--r-- | logtalk.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/logtalk.html.markdown b/logtalk.html.markdown index bff52cae..5a52bd3c 100644 --- a/logtalk.html.markdown +++ b/logtalk.html.markdown @@ -182,7 +182,7 @@ A message is valid if the corresponding predicate is declared (and the sender is ```logtalk :- object(foo). - :- public(bar). + :- public(bar/0). :- end_object. ``` |