Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
nkhedekar committed May 7, 2024
1 parent 8520d3b commit 832ec1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config_utilities/docs/Configs.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ To ensure that a config is valid use `checkValid()`. This will throw and excepti
```c++
class MyObject {
public:
explicit MyObject(const MyConfig& cfg) : config_(config::checkValid(cfg), object_(config_)) {}
explicit MyObject(const MyConfig& cfg) : config_(config::checkValid(cfg)), object_(config_) {}

private:
const MyConfig config_;
Expand Down

0 comments on commit 832ec1c

Please sign in to comment.