Documentation tweaks and fixes

This commit is contained in:
Nathan McCarty 2025-01-23 00:17:19 -05:00
parent 9489721e29
commit 407149dd4a
4 changed files with 29 additions and 13 deletions

View file

@ -28,9 +28,9 @@ function to have a single source of truth for this. The `err` type can be any
type with a `Show` implementation, but that constraint will be tacked on in the
next step.
A `Writer` effect is provided for logging, and a `Reader` effect is provided to
pass in the input, just to make the top level API a little bit cleaner. `IO` is
also provided, even though the part solutions themselves shouldn't really be
The `Logger` effect is provided for logging, and a `Reader` effect is provided
to pass in the input, just to make the top level API a little bit cleaner. `IO`
is also provided, even though the part solutions themselves shouldn't really be
doing any IO, this may come in handy if a part needs `IO` for performance
reasons.