File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -708,7 +708,7 @@ following differences:
708708 precision that provides round-trip guarantees similarly to other languages
709709 like Java and Python. ` std::format ` is currently specified in terms of
710710 ` std::to_chars ` which tries to generate the smallest number of characters
711- (ignoring redundant digits and sign in exponent) and may procude more
711+ (ignoring redundant digits and sign in exponent) and may produce more
712712 decimal digits than necessary.
713713
714714## Configuration Options
@@ -748,7 +748,7 @@ configuring CMake.
748748 - ` 0 ` - off (default)
749749 - ` 1 ` - disables locale support and applies some optimizations
750750 - ` 2 ` - disables some Unicode features, named arguments and applies more
751- aggresive optimizations
751+ aggressive optimizations
752752
753753### Binary Size Optimization
754754
Original file line number Diff line number Diff line change 7676<p >
7777 The default is <b >locale-independent</b >, but you can opt into localized
7878 formatting and {fmt} makes it work with Unicode, addressing issues in the
79- standard libary .
79+ standard library .
8080</p >
8181</div >
8282
Original file line number Diff line number Diff line change @@ -737,7 +737,7 @@ template <typename T>
737737using is_double_double = bool_constant<std::numeric_limits<T>::digits == 106 >;
738738
739739// An allocator that uses malloc/free to allow removing dependency on the C++
740- // standard libary runtime. std::decay is used for back_inserter to be found by
740+ // standard library runtime. std::decay is used for back_inserter to be found by
741741// ADL when applied to memory_buffer.
742742template <typename T> struct allocator : private std ::decay<void > {
743743 using value_type = T;
Original file line number Diff line number Diff line change 2222#define FMT_FUZZ_SEPARATE_ALLOCATION 1
2323
2424// The size of the largest possible type in use.
25- // To let the the fuzzer mutation be efficient at cross pollinating between
25+ // To let the fuzzer mutation be efficient at cross pollinating between
2626// different types, use a fixed size format. The same bit pattern, interpreted
2727// as another type, is likely interesting.
2828constexpr auto fixed_size = 16 ;
You can’t perform that action at this time.
0 commit comments