README.adoc in refinements-8.2.1 vs README.adoc in refinements-8.2.2

- old
+ new

@@ -9,11 +9,13 @@ [link=https://www.alchemists.io/projects/code_quality] image::https://img.shields.io/badge/code_style-alchemists-brightgreen.svg[Alchemists Style Guide] [link=https://circleci.com/gh/bkuhlmann/refinements] image::https://circleci.com/gh/bkuhlmann/refinements.svg?style=svg[Circle CI Status] -A collection of refinements (enhancements) to primitive Ruby objects. +Refinements is a collection of enhancements to primitive Ruby objects without needing to resort +painful and hard to debug monkey patches. These refinements give you additional syntactic sugar to +build clean and concise implementations all while using less code. toc::[] == Features @@ -533,10 +535,10 @@ Wraps `Dir.mktmpdir` with the following behavior (see link:https://rubyapi.org/o/Dir.mktmpdir#method-c-mktmpdir[Dir.mktmpdir] for details): * *Without Block* - Answers a newly created Pathname instance which is not automatically cleaned up. -* *With Block* Yields a Pathname instance, answers result of given block, and automatidally cleans +* *With Block* Yields a Pathname instance, answers result of given block, and automatically cleans up temporary directory after block exits. The following examples use truncated temporary directories for illustration purposes only. In reality, these paths will be longer depending on which operating system you are using.