process comments
[phd-thesis.git] / top / 4iot.tex
index efeef52..3baf7cb 100644 (file)
@@ -159,7 +159,7 @@ void loop() {
 
 Unfortunately, this does not work because the \arduinoinline{delay} function blocks all other execution.
 The resulting program blinks the \glspl{LED} after each other instead of at the same time.
-To overcome this, it is necessary to slice up the blinking behaviour in small fragments and interleave it manually \citep{feijs_multi-tasking_2013}.
+To overcome this, it is necessary to slice up the blinking behaviour in small fragments and interleave them manually \citep{feijs_multi-tasking_2013}.
 
 \begin{lstArduino}[float=,label={lst:blinkthread},caption={Threading three blinking patterns.}]
 long led1 = 0,    led2 = 0,    led3 = 0;
@@ -233,7 +233,7 @@ First, the language setup and interface are shown in \cref{chp:mtask_dsl}.
 \Cref{chp:integration_with_itask} shows the integration of \gls{MTASK} and \gls{ITASK}.
 Then, \cref{chp:implementation} provides the implementation of the \gls{DSL}, the compilation schemes, instruction set, and details on the interpreter.
 \Cref{chp:green_computing_mtask} explains all green computing aspects of \gls{MTASK}, i.e.\ task scheduling and processor interrupts.
-Finally, \cref{chp:finale} concludes, shows related work, and provides a short history of \gls{MTASK}.
+Finally, \cref{chp:finale} concludes, discusses related work, and provides a short history of \gls{MTASK}.
 
 \input{subfilepostamble}
 \end{document}