File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
main/scala/org/scalacheck
test/scala/org/scalacheck/util Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -608,7 +608,7 @@ object Gen extends GenArities with GenVersionSpecific {
608
608
609
609
610
610
/**
611
- * A fixed point generator. This is useful for making recusive structures
611
+ * A fixed point generator. This is useful for making recursive structures
612
612
* e.g.
613
613
*
614
614
* Gen.recursive[List[Int]] { recurse =>
@@ -1288,7 +1288,7 @@ object Gen extends GenArities with GenVersionSpecific {
1288
1288
1289
1289
// We want to be sure we always initialize the calendar's time. By
1290
1290
// default, Calendar.getInstance uses the system time. We always
1291
- // overwrite it with a determinisitcally -generated time to be sure
1291
+ // overwrite it with a deterministically -generated time to be sure
1292
1292
// that calendar generation is also deterministic.
1293
1293
//
1294
1294
// We limit the time (in milliseconds) because extreme values will
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ object PrettySpecification extends Properties("Pretty") {
42
42
lines.forall(s => s.length <= length)
43
43
}
44
44
45
- property(" break is reversable " ) =
45
+ property(" break is reversible " ) =
46
46
Prop .forAll { (input : String , lead : String , x : Int ) =>
47
47
val length = lead.length + (x & 0xff ) + 1
48
48
val res = Pretty .break(input, lead, length)
You can’t perform that action at this time.
0 commit comments