Skip to content

Commit c4d632f

Browse files
authored
Merge pull request #794 from elbeno/fix-docs-typo
🐛 📚 Fix typo in docs
2 parents 7ec29db + 5733ba2 commit c4d632f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/logging.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ CIB_INFO("The answer is: {}", "42"); // compile-time formatted
138138
139139
static constexpr auto x = 42;
140140
CIB_INFO("The answer is: {}", x); // compile-time formatted
141-
CIB_INFO("42 is an {}", 42, int); // compile-time formatted
141+
CIB_INFO("{} is an {}", 42, int); // compile-time formatted
142142
143143
auto y = 42;
144144
CIB_INFO("The answer is: {}", y); // runtime formatted

0 commit comments

Comments
 (0)