summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorPaulo Moura <pmoura@logtalk.org>2017-02-11 16:48:10 +0000
committerven <vendethiel@hotmail.fr>2017-02-11 17:48:10 +0100
commitdbecb473cecfeb0914cb104ff4d680f9fef2b31d (patch)
tree4a4493336e43dab7dc02d07d41f2d4871d79ab5e
parent870e2fbf6dccfe9d769bf3d6ccae402d698322df (diff)
Fixes and improvements to the Logtalk tutorial (#2651)
-rw-r--r--logtalk.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/logtalk.html.markdown b/logtalk.html.markdown
index d4010f8b..bff52cae 100644
--- a/logtalk.html.markdown
+++ b/logtalk.html.markdown
@@ -106,7 +106,7 @@ Error = error(
yes
```
-A subtle point is that predicate scope directives specify predicate _calling_ semantics, not _definitions_ semantics. For example, if an object playing the role of a class declares a predicate private, the predicate can be defined in subclasses and instances *but* can only be called in its instances _from_ the class.
+A subtle point is that predicate scope directives specify predicate _calling_ semantics, not _definition_ semantics. For example, if an object playing the role of a class declares a predicate private, the predicate can be defined in subclasses and instances *but* can only be called in its instances _from_ the class.
# Defining and implementing a protocol