Skip to content

Commit cf740b6

Browse files
fix no known in README
1 parent 27d6498 commit cf740b6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -434,10 +434,10 @@ syntactic sugar in some form. For example, the variable construction:
434434
is syntactic sugar for:
435435

436436
```julia
437-
t = Variable(:t; known = true)()
438-
σ = Variable(; known = true)()
439-
ρ = Variable(; known = true)()
440-
β = [Variable(, i; known = true)() for i in 1:3]
437+
t = Variable(:t)()
438+
σ = Variable()()
439+
ρ = Variable()()
440+
β = [Variable(, i)() for i in 1:3]
441441
x = Variable(:x)(t)
442442
y = Variable(:y)(t)
443443
z = Variable(:z)(t)

0 commit comments

Comments
 (0)