Skip to content

Commit

Permalink
Update SupplierTypes.md
Browse files Browse the repository at this point in the history
fix typo
  • Loading branch information
bbaldino authored Jul 21, 2020
1 parent 08b0e87 commit 4ea33ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/SupplierTypes.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ val booleanSupplier: ConfigValueSupplier<Boolean> = ConfigSourceSupplier(
myConfigSource,
typeOf<Boolean>()
)
val inverted: ConfigValueSupplier<Boolean> =ValueTransformingSupplier(
boolean,
val inverted: ConfigValueSupplier<Boolean> = ValueTransformingSupplier(
booleanSupplier,
{ !it }
)
```
Expand Down

0 comments on commit 4ea33ed

Please sign in to comment.