Probably prefix removal for a dependency in the documentation notes.
cruiztorresj opened this issue · comments
Hello there,
RIght now the Quickstart and the installation sections contains the following proposed dependencies in order to get started:
libraryDependencies ++= Seq("org.specs2" %% "specs2-core" % "SPECS2-5.0.2" % "test")
I needed to remove the prefix SPECS2-
in order to make this library work for me. As follows:
libraryDependencies ++= Seq("org.specs2" %% "specs2-core" % "5.0.2" % "test")
Sorry if this isn't an issue. And if it is, I volunteer to send that tiny little pull request so you can focus in other areas of the library.
Please note that I am solely using Scala 3. I don't know if that line of code has to remain the same for Scala 2 compatibility purposes.
--
Caleb
Thanks for noticing this, that should be an easy fix. Let's see if the doc ends up ok online 🤞
OK buddy, seems like you have this under your belt.
I have spotted two parts within the entire portal with the opportunity of modification.
- Installation section ✅
- Quickstart section does still shows the prefix. 🧡
Happy weekend.
--
Caleb
Thanks @cruiztorresj that will be fixed with the next pushed tag.