-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
polishing FAQ #1912
polishing FAQ #1912
Conversation
Codecov Report
@@ Coverage Diff @@
## master #1912 +/- ##
=======================================
Coverage 95.54% 95.54%
=======================================
Files 248 248
Lines 4420 4420
Branches 121 124 +3
=======================================
Hits 4223 4223
Misses 197 197 Continue to review full report at Codecov.
|
docs/src/main/tut/faq.md
Outdated
@@ -38,9 +38,9 @@ This should be all that you need, but if you'd like to learn more about the deta | |||
|
|||
## <a id="diff-scalaz" href="#diff-scalaz"></a>What is the difference between Cats and Scalaz? | |||
|
|||
Cats and [Scalaz](https://github.com/scalaz/scalaz) have the same goal: facilitate pure functional programming in Scala applications; the underlying core strategy is different. Scalaz took the approach of trying to provide a single batteries-included *standard library* for FP that powers the Scala applications. Cats, on the other hand, aims to help build an [ecosystem](/cats/#ecosystem) of pure FP libraries by providing a solid and stable foundation. These libaries can have their own styles and personalities, competing with each other, while at the same time playing nice. It is through this ecosystem of FP libraries (cats included) that Scala applications can be powered with "FP awesome-ness" and beyond by picking whatever best fit their needs. | |||
Cats and [Scalaz](https://github.com/scalaz/scalaz) have the same goal: to facilitate pure functional programming in Scala applications. However, the underlying core strategy is different. Scalaz took the approach of trying to provide a single batteries-included *standard library* for FP that powers the Scala applications. Cats, on the other hand, aims to help build an [ecosystem](/cats/#ecosystem) of pure FP libraries by providing a solid and stable foundation; these libaries can have their own styles and personalities, competing with each other, while at the same time playing nice. It is through this ecosystem of FP libraries (cats included) that Scala applications can be powered with "FP awesome-ness" and beyond by picking whatever best fit their needs. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
s/libaries/libraries
I think the title in the FAQ listing is missing a question mark :) |
closing this since the changes were rolled into #1915 |
based on feedbacks from @edmundnoble on #1901