Skip to content

Commit 5733ba2

Browse files
committed
🐛 📚 Fix typo in docs
Problem: - A format string is incorrect in documentation. Solution: - Fix it.
1 parent 7ec29db commit 5733ba2

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)