diff --git a/README.md b/README.md index cd65291..f64d57f 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ * [Did you know that C++23 added support for formatting ranges?](https://github.com/tip-of-the-week/cpp/blob/master/tips/321.md) * [Did you know that `std::unique_ptr` can be constexpr in C++23?](https://github.com/tip-of-the-week/cpp/blob/master/tips/318.md) * [Did you know that C++23 added static operator[]?](https://github.com/tip-of-the-week/cpp/blob/master/tips/307.md) -* [Did you know that functions in are constexpr since C++23?](https://github.com/tip-of-the-week/cpp/blob/master/tips/301.md) +* [Did you know that functions in `` are constexpr since C++23?](https://github.com/tip-of-the-week/cpp/blob/master/tips/301.md) * [Did you know that C++23 added support for constexpr std::bitset?](https://github.com/tip-of-the-week/cpp/blob/master/tips/300.md) * [Did you know that C++23 added static operator()?](https://github.com/tip-of-the-week/cpp/blob/master/tips/298.md) * [Did you know that C++23 added `stacktrace` library?](https://github.com/tip-of-the-week/cpp/blob/master/tips/295.md) diff --git a/tips/301.md b/tips/301.md index 19f9b95..87370b0 100644 --- a/tips/301.md +++ b/tips/301.md @@ -1,6 +1,6 @@
Info

-* **Did you now that functions in are constexpr since C++23?** +* **Did you now that functions in `` are constexpr since C++23?** * https://wg21.link/P2291