Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Update dead link to grepcode #436

Merged
merged 1 commit into from
Dec 7, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/main/scala/org/scalacheck/Arbitrary.scala
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ private[scalacheck] sealed trait ArbitraryLowPriority {

/** Arbitrary instance of Char */
implicit lazy val arbChar: Arbitrary[Char] = Arbitrary {
// exclude 0xFFFE due to this bug: http://bit.ly/1QryQZy
// exclude 0xFFFE due to this bug: https://bit.ly/2pTpAu8
// also exclude 0xFFFF as it is not unicode: http://bit.ly/2cVBrzK
val validRangesInclusive = List[(Char, Char)](
(0x0000, 0xD7FF),
Expand Down