From 2775ea0331fe095e828d31a39826c5111283a28a Mon Sep 17 00:00:00 2001 From: tobolar Date: Tue, 16 Nov 2021 11:15:00 +0100 Subject: [PATCH] Start description with Upper case --- chapters/scoping.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chapters/scoping.tex b/chapters/scoping.tex index fe2b14eb8..a63cb4c57 100644 --- a/chapters/scoping.tex +++ b/chapters/scoping.tex @@ -317,7 +317,7 @@ \section{Simultaneous Inner/Outer Declarations}\label{simultaneous-inner-outer-d der(x) = if isEnabled then -x else 0; end ConditionalIntegrator; -model SubSystem "subsystem that 'enable' its conditional integrators" +model SubSystem "Subsystem that 'enable' its conditional integrators" Boolean enableMe = time <= 1; // Set inner isEnabled to outer isEnabled and enableMe inner outer Boolean isEnabled = isEnabled and enableMe;