Skip to content

Commit c8ce73f

Browse files
committed
Fixed a typo in tutorial (#451)
1 parent 6d5dc40 commit c8ce73f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/tutorials/prob-interface.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ end
2020
nothing # hide
2121
```
2222

23-
We generate some data using `μ = 0` and `σ = 1`:
23+
We generate some data using `μ = 0`:
2424

2525
```@example probinterface
2626
Random.seed!(1776)
@@ -35,7 +35,7 @@ Conditioning takes a variable and fixes its value as known.
3535
We do this by passing a model and a collection of conditioned variables to [`|`](@ref) or its alias [`condition`](@ref):
3636

3737
```@example probinterface
38-
model = gdemo(length(dataset)) | (x=dataset, μ=0, σ=1)
38+
model = gdemo(length(dataset)) | (x=dataset, μ=0)
3939
nothing # hide
4040
```
4141

0 commit comments

Comments
 (0)