diff --git a/docs/src/site/index.md b/docs/src/site/index.md index 023a0d0139..789de8c552 100644 --- a/docs/src/site/index.md +++ b/docs/src/site/index.md @@ -16,6 +16,7 @@ The name is a playful shortening of the word *category*. ### Getting Started + Cats is currently available for Scala 2.10 and 2.11. To get started with SBT, simply add the following to your build.sbt file: @@ -34,8 +35,10 @@ functionality, you can pick-and-choose from amongst these modules Release notes for Cats are available in [CHANGES.md](https://github.com/typelevel/cats/blob/master/CHANGES.md). + # Motivations + ### Approachability As this library evolves, we are placing a lot of emphasis on trying to @@ -78,8 +81,10 @@ we can without making unnecessary sacrifices of purity and usability. Where sacrifices have to be made, we will strive to make these obvious, and will keep them well documented. + ### Project Structure + In an attempt to be more modular, Cats is broken up into a number of sub-projects: * *core* - contains type class definitions (e.g. Functor, Applicative, Monad), essential datatypes, and @@ -89,8 +94,10 @@ In an attempt to be more modular, Cats is broken up into a number of sub-project * *tests* - tests that check type class instances with laws from *laws* * *docs* - The source for this website + ### Copyright and License + All code is available to you under the MIT license, available at http://opensource.org/licenses/mit-license.php and also in the [COPYING](https://raw.githubusercontent.com/typelevel/cats/master/COPYING) file. The design is informed by many other