Skip to content

Commit c1bb2a8

Browse files
committed
Fix docs
1 parent 981ae29 commit c1bb2a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/literate/example/5_iterative_result.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ plan.parameter.pre.frames = collect(1:5)
4545
# Instead of traversing the properties of the plan/algorithm, we can also use the `setAll!` function to set all parameters of the same of the plan at once:
4646
setAll!(plan, :solver, FISTA);
4747
# This also works with dictionaries of symbols and values:
48-
dict = Dict{Symbol, Any}(:reg => [L1Regularization(0.001), PositiveRegularization()])
48+
dict = Dict{Symbol, Any}(:reg => [L1Regularization(0.001)])
4949
setAll!(plan, dict);
5050

5151
# Once we have parametertized our plan, we can build the algorithm from it:

0 commit comments

Comments
 (0)