Skip to content

Commit c6dc195

Browse files
authored
Merge pull request #187 from jmid/correct-stm-docs
Correct STM docs
2 parents 0380d02 + df85e75 commit c6dc195

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

lib/STM_domain.mli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ module Make : functor (Spec : STM_base.Spec) ->
2626
(** Parallel agreement test based on [Domain] which combines [repeat] and [~retries] *)
2727

2828
val neg_agree_test_par : count:int -> name:string -> QCheck.Test.t
29-
(** An negative agreement test (for convenience). Accepts two labeled parameters:
29+
(** A negative agreement test (for convenience). Accepts two labeled parameters:
3030
[count] is the test count and [name] is the printed test name. *)
3131

3232
end

lib/STM_internal.mli

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
open QCheck
22
open STM_spec
3-
(** A revised state machine framework with parallel testing.
4-
This version does not come with built-in GC commands. *)
3+
(** Internal helper module to build STM tests. *)
54

65

76
(** Derives a test framework from a state machine specification. *)

lib/STM_sequential.mli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ module Make : functor (Spec : STM_base.Spec) ->
2121
[count] is the test count and [name] is the printed test name. *)
2222

2323
val neg_agree_test : count:int -> name:string -> QCheck.Test.t
24-
(** An negative agreement test (for convenience). Accepts two labeled parameters:
24+
(** A negative agreement test (for convenience). Accepts two labeled parameters:
2525
[count] is the test count and [name] is the printed test name. *)
2626
end

lib/STM_spec.mli

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
(** Module with combinators and definitions to specify an STM test *)
2+
13
(** Extensible type to represent result values *)
24
type 'a ty = ..
35

lib/STM_thread.mli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ module Make : functor (Spec : STM_base.Spec) ->
1515
(** Concurrent agreement test based on [Thread] which combines [repeat] and [~retries] *)
1616

1717
val neg_agree_test_conc : count:int -> name:string -> QCheck.Test.t
18-
(** An negative agreement test (for convenience). Accepts two labeled parameters:
18+
(** A negative agreement test (for convenience). Accepts two labeled parameters:
1919
[count] is the test count and [name] is the printed test name. *)
2020

2121
end

0 commit comments

Comments
 (0)