Skip to content

Commit

Permalink
fix typo in Lecture7/Slides.tex
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Rogozin committed Mar 17, 2021
1 parent 8cb7782 commit f5559c3
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Binary file modified Lecture7/Slides.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion Lecture7/Slides.tex
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ \section{Reader, Writer, and State}

\begin{frame}[fragile]
\frametitle{Reader}
The \verb"Reader" monad allows to read values from an environment:
The \verb"Reader" monad allows one to read values from an environment:
\begin{minted}{haskell}
newtype Reader r a = Reader { runReader :: (r -> a) }

Expand Down
2 changes: 1 addition & 1 deletion ParserSeminar/Slides.tex
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@

-- always succeeds without consuming any input
ok :: Parser ()
ok = Parser $ \s -> Just ((), s)
ok = error "this is your home"
\end{minted}
\end{frame}

Expand Down

0 comments on commit f5559c3

Please sign in to comment.