1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-20 21:42:14 +02:00

[logtalk/en] fix typo in example code (#2669)

This commit is contained in:
Paulo Moura
2017-02-21 12:00:24 +00:00
committed by ven
parent dc34cd25a9
commit 5d55924bdc

View File

@@ -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.
```