[libc++] Clarify std::function release note

Replace "This option it" with "This option" to make the sentence read a bit
clearer.

Differential Revision: https://reviews.llvm.org/D128362
This commit is contained in:
Joe Loser 2022-06-22 11:25:43 -06:00
parent 476ced4b89
commit f7d434ef29
No known key found for this signature in database
GPG Key ID: 1CDBEBC050EA230D
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ API Changes
- ``std::function`` has been removed in C++03. If you are using it, please remove usages
or upgrade to C++11 or later. It is possible to re-enable ``std::function`` in C++03 by defining
``_LIBCPP_ENABLE_CXX03_FUNCTION``. This option it will be removed in LLVM 16.
``_LIBCPP_ENABLE_CXX03_FUNCTION``. This option will be removed in LLVM 16.
- ``unary_function`` and ``binary_function`` are no longer available in C++17 and C++20.
They can be re-enabled by defining ``_LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION``.