Index: doc/theses/colby_parsons_MMAth/text/channels.tex
===================================================================
--- doc/theses/colby_parsons_MMAth/text/channels.tex	(revision e0396d955efb075761370d77a06b0629c8de036f)
+++ doc/theses/colby_parsons_MMAth/text/channels.tex	(revision d3b8752a534585aa168dacfe646fe4a2c9043084)
@@ -108,9 +108,9 @@
 Additionally, the @flush@ routine is more performant then looping around the @insert@ operation since it can deliver the elements without having to reacquire mutual exclusion for each element sent.
 
-\item Go-style @?>>?@ and @?<<?@ shorthand operators for inserting and removing respectively.
+\item Go-style @?<<?@ shorthand operator for inserting and removing.
 \begin{cfa}
 channel(int) chan;
 int i = 2;
-i >> chan;			$\C{// insert i into chan}$
+chan << i;			$\C{// insert i into chan}$
 i << chan;	        $\C{// remove element from chan into i}$
 \end{cfa}
