From b658b4c8efb5b3ba42d4a4de3d12d78da220604d Mon Sep 17 00:00:00 2001 From: Stephen Diehl Date: Sat, 2 Jul 2016 17:32:11 -0400 Subject: [PATCH] Note explicit String types. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 520ea7e01..61e46f96a 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Design points: * Polymorphic show. * Automatic string conversions. * Types for common data structures in scope. -* Types for all common string types in scope. +* Types for all common string types (Text/ByteString) in scope. * Banishes impure exception throwing outside of IO. * StateT/ReaderT/ExceptT transformers in scope by default. * Foldable / Traversable functions in scope by default. @@ -125,7 +125,7 @@ panic "Thus I die. Thus, thus, thus. Now I am dead" ``` If inside of IO simply use ``throwIO`` for exception handling, or if in pure -business logic use well-typed checked exceptions of the ``ExceptT`` and variety. +business logic use well-typed checked exceptions of the ``ExceptT`` variety. License -------