Skip to content

Commit 7cac83a

Browse files
committed
Update url for fmt lib
1 parent 9aea899 commit 7cac83a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

manual/scripting/cpp/string-formatting.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# String Formatting for C\+\+ in Flax
22

3-
Flax uses [fmt](https://fmt.dev/5.3.0/index.html) lib to format strings. The formatting syntax is similar to the one in C# and is considered as easy to use and quite extensible. The same formatting style can be used also in `LOG` macro to print formatted messages.
3+
Flax uses [fmt](https://fmt.dev/6.2.1/index.html) lib to format strings. The formatting syntax is similar to the one in C# and is considered as easy to use and quite extensible. The same formatting style can be used also in `LOG` macro to print formatted messages.
44

55
## Syntax
66

77
Format strings contain `replacement fields` surrounded by curly braces `{}`. Anything that is not contained in braces is considered literal text, which is copied unchanged to the output. If you need to include a brace character in the literal text, it can be escaped by doubling: `{{` and `}}`.
88

9-
To learn more see the reference: [fmt syntax](https://fmt.dev/5.3.0/syntax.html).
9+
To learn more see the reference: [fmt syntax](https://fmt.dev/6.2.1/syntax.html).
1010

1111
## Examples
1212

0 commit comments

Comments
 (0)