Skip to content

Commit 812bc0e

Browse files
committed
adjusting statestore
1 parent b76ddce commit 812bc0e

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

statestorevalidator/all_example_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ func ExampleAll() {
1414
_ = []statestore.ConfigValidator{
1515
// The configuration must satisfy either All validator.
1616
statestorevalidator.Any(
17-
statestorevalidator.All( /* ... */),
18-
statestorevalidator.All( /* ... */),
17+
statestorevalidator.All( /* ... */ ),
18+
statestorevalidator.All( /* ... */ ),
1919
),
2020
}
2121
}

statestorevalidator/any_example_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ import (
1111
func ExampleAny() {
1212
// Used inside a statestore.StateStore type ConfigValidators method
1313
_ = []statestore.ConfigValidator{
14-
statestorevalidator.Any( /* ... */),
14+
statestorevalidator.Any( /* ... */ ),
1515
}
1616
}

statestorevalidator/any_with_all_warnings_example_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ import (
1111
func ExampleAnyWithAllWarnings() {
1212
// Used inside a statestore.StateStore type ConfigValidators method
1313
_ = []statestore.ConfigValidator{
14-
statestorevalidator.AnyWithAllWarnings( /* ... */),
14+
statestorevalidator.AnyWithAllWarnings( /* ... */ ),
1515
}
1616
}

0 commit comments

Comments
 (0)