@@ -28,7 +28,7 @@ dependencies for better compile times. This header is only beneficial when
2828using {fmt} as a library (the default) and not in the header-only mode.
2929It also provides ` formatter ` specializations for the following types:
3030
31- - ` int ` , ` long long ` ,
31+ - ` int ` , ` long long `
3232- ` unsigned ` , ` unsigned long long `
3333- ` float ` , ` double ` , ` long double `
3434- ` bool `
@@ -105,8 +105,8 @@ Example ([run](https://godbolt.org/z/nvME4arz8)):
105105 fmt::print("{}\n", kevin_namespacy::film::se7en); // Output: 7
106106 }
107107
108- Using specialization is more complex but gives you full control over
109- parsing and formatting. To use this method specialize the ` formatter `
108+ Using a specialization is more complex, but gives you full control over
109+ parsing and formatting. To use this method, specialize the ` formatter `
110110struct template for your type and implement ` parse ` and ` format `
111111methods.
112112
@@ -515,7 +515,7 @@ chrono-format-specifications).
515515
516516### Variants
517517
518- A `std::variant` is only formattable if every variant alternative is
518+ A `std::variant` can be formatted only if every alternative is
519519formattable, and requires the `__cpp_lib_variant` [library
520520feature](https://en.cppreference.com/w/cpp/feature_test).
521521
@@ -719,7 +719,7 @@ configuring CMake.
719719### CMake Options
720720
721721- ** ` FMT_OS ` ** : When set to ` OFF ` , disables OS-specific APIs (` fmt/os.h ` ).
722- - ** ` FMT_UNICODE ` ** : When set of ` OFF ` , disables Unicode support on
722+ - ** ` FMT_UNICODE ` ** : When set to ` OFF ` , disables Unicode support on
723723 Windows/MSVC. Unicode support is always enabled on other platforms.
724724
725725### Macros
0 commit comments