From f94c1f6f2b5e141d5f6eb3d284cd4a8cf9a81aac Mon Sep 17 00:00:00 2001 From: Werner Henze <34543625+beinhaerter@users.noreply.github.com> Date: Thu, 29 Dec 2022 19:23:30 +0100 Subject: [PATCH] use code spans in README.md (#1078) --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 19f84cc..513bc86 100644 --- a/README.md +++ b/README.md @@ -48,15 +48,15 @@ Expects | ☑ | a precondition assertion; on f Ensures | ☑ | a postcondition assertion; on failure it terminates [**4. Utilities**][cg-utilities] | | move_owner | ☐ | a helper function that moves one `owner` to the other -byte | ☑ | either an alias to std::byte or a byte type +byte | ☑ | either an alias to `std::byte` or a byte type final_action | ☑ | a RAII style class that invokes a functor on its destruction finally | ☑ | a helper function instantiating `final_action` GSL_SUPPRESS | ☑ | a macro that takes an argument and turns it into `[[gsl::suppress(x)]]` or `[[gsl::suppress("x")]]` [[implicit]] | ☐ | a "marker" to put on single-argument constructors to explicitly make them non-explicit -index | ☑ | a type to use for all container and array indexing (currently an alias for std::ptrdiff_t) +index | ☑ | a type to use for all container and array indexing (currently an alias for `std::ptrdiff_t`) joining_thread | ☐ | a RAII style version of `std::thread` that joins -narrow | ☑ | a checked version of narrow_cast; it can throw `narrowing_error` -narrow_cast | ☑ | a narrowing cast for values and a synonym for static_cast +narrow | ☑ | a checked version of `narrow_cast`; it can throw `narrowing_error` +narrow_cast | ☑ | a narrowing cast for values and a synonym for `static_cast` narrowing_error | ☑ | a custom exception type thrown by `narrow()` [**5. Concepts**][cg-concepts] | ☐ |