Skip to content

Commit ebb6aed

Browse files
committed
Update STM documentation after Base-renaming
1 parent c234384 commit ebb6aed

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

doc/stm/index.mld

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
{1 Content}
44

5-
- {!module-STM_base}.
5+
- {!module-STM}.
66
- {!module-STM_sequential} exposes a functor that allows to test a library sequentially.
77
- {!module-STM_domain} exposes a functor that allows to test a library in parallel (with domains).
88
- {!module-STM_thread} exposes a functor that allows to test a library in concurrency (with threads).
@@ -86,7 +86,7 @@ end
8686
In order to use [qcheck.stm] to test our implementation, the first thing we
8787
need to do is to provide a description of this library. We call this
8888
description a specification and it takes the form of a module of type
89-
{{!module-STM_base.Spec}Spec}. In this module, the user describes three things:
89+
{{!module-STM.Spec}Spec}. In this module, the user describes three things:
9090

9191
{ol
9292
{- the library to be tested,}
@@ -98,7 +98,7 @@ Here is the specification of our little mutable set library:
9898

9999
{[
100100
open QCheck
101-
open STM_base
101+
open STM
102102

103103
module Lib_spec : Spec = struct
104104
module S = Lib.Make (Int)
@@ -168,7 +168,7 @@ yourself if you prefer.
168168

169169
Finally, the [run] function calls the library's function with the given arguments
170170
and [sut] and wraps the result with information about its type in a
171-
{{!STM_base.res}res} type.
171+
{{!STM.res}res} type.
172172

173173
{3 The model definition}
174174

doc/stm/mutable_set_v0.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ end
3232
end
3333

3434
open QCheck
35-
open STM_base
35+
open STM
3636

3737
module Lib_spec : Spec = struct
3838

doc/stm/mutable_set_v1.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
open QCheck
2-
open STM_base
2+
open STM
33

44
module type S = sig
55
type elt

doc/stm/mutable_set_v2.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ end
3737
end
3838

3939
open QCheck
40-
open STM_base
40+
open STM
4141

4242
module Lib_spec : Spec = struct
4343

doc/stm/mutable_set_v3.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ end
5050
end
5151

5252
open QCheck
53-
open STM_base
53+
open STM
5454

5555
module Lib_spec : Spec = struct
5656

doc/stm/mutable_set_v4.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ end
6565
end
6666

6767
open QCheck
68-
open STM_base
68+
open STM
6969

7070
module Lib_spec : Spec = struct
7171

0 commit comments

Comments
 (0)