Skip to content

Commit a026b4f

Browse files
arialdomartinikurtschelfthout
authored andcommitted
Using Prop.label instead of @|
1 parent 7fc3f30 commit a026b4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/Properties.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ This is useful for displaying intermediate results, for example:*)
269269
(***define-output:multiply***)
270270
let multiply (n: int, m: int) =
271271
let res = n*m
272-
sprintf "evidence = %i" res @| (
272+
Prop.label (sprintf "evidence = %i" res) (
273273
Prop.label "div1" (m <> 0 ==> lazy (res / m = n)) .&.
274274
Prop.label "div2" (n <> 0 ==> lazy (res / n = m)) .&.
275275
Prop.label "lt1" (res > m) .&.

0 commit comments

Comments
 (0)