Skip to content

Commit 9529a14

Browse files
committed
Update readme
1 parent 2745f05 commit 9529a14

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "semiring",
3-
"version": "1.2.4",
3+
"version": "1.2.5",
44
"main": "index.js",
55
"types": "index.d.ts",
66
"repository": "git@github.com:digitalheir/semiring-js.git",

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ import {
3838
BooleanSemiring,
3939
fromProbabilityToMinusLog as fromProbability,
4040
toProbabilityFromMinusLog as toProbability,
41-
Atom,
41+
AtomicValue,
4242
Bool
4343
} from "semiring";
4444

@@ -65,7 +65,7 @@ const deferrableBooleanSemiring = makeDeferrable(BooleanSemiring);
6565
const AND = deferrableBooleanSemiring.times;
6666
const OR = deferrableBooleanSemiring.plus;
6767

68-
const changeMyValue = new Atom(false);
68+
const changeMyValue = new AtomicValue(false);
6969

7070
const TRUE = Bool.TRUE;
7171
const FALSE = Bool.FALSE;

0 commit comments

Comments
 (0)