From d26d68fde330f91378ec223a320e1448616267ec Mon Sep 17 00:00:00 2001 From: Hans Olsson Date: Mon, 22 Jun 2020 14:55:11 +0200 Subject: [PATCH] Update chapters/scoping.tex Avoid "looking up" Co-authored-by: Henrik Tidefelt --- chapters/scoping.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chapters/scoping.tex b/chapters/scoping.tex index 4028e2faf..be95e95c0 100644 --- a/chapters/scoping.tex +++ b/chapters/scoping.tex @@ -138,7 +138,7 @@ \subsection{Composite Name Lookup}\doublelabel{composite-name-lookup} \begin{example} Components and classes are part of the same name-space and thus a component cannot have the same name as its class or the first part of the class-name as that -would prevent looking up the name of the class. +would prevent lookup of the class name. \begin{lstlisting}[language=modelica] model A M M; // Illegal, component 'M' prevents finding class 'M'