From dbecb473cecfeb0914cb104ff4d680f9fef2b31d Mon Sep 17 00:00:00 2001 From: Paulo Moura Date: Sat, 11 Feb 2017 16:48:10 +0000 Subject: [PATCH] Fixes and improvements to the Logtalk tutorial (#2651) --- logtalk.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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