Skip to content

Commit 5f01c39

Browse files
committed
Clang-format lint
Fix whitespace issues.
1 parent e0a9c89 commit 5f01c39

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

include/beman/optional/optional.hpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1665,7 +1665,7 @@ class optional<T&> {
16651665
* @brief Nullopt assignment operator.
16661666
*
16671667
* @return optional&
1668-
*
1668+
*
16691669
* @details
16701670
* Destroys the current value if there is one, and leaves the optional
16711671
* in an empty state.
@@ -1772,10 +1772,10 @@ class optional<T&> {
17721772
* @tparam F
17731773
* @param f
17741774
* @return auto
1775-
*
1775+
*
17761776
* @details
17771777
* The return type is the same as \tcode{std::invoke_result_t<F, T&>},
1778-
* but wrapped in an optional. The function \p f must return an optional type.
1778+
* but wrapped in an optional. The function \p f must return an optional type.
17791779
*/
17801780
template <class F>
17811781
constexpr auto and_then(F&& f) const;
@@ -1786,7 +1786,7 @@ class optional<T&> {
17861786
* @tparam F
17871787
* @param f
17881788
* @return optional<std::invoke_result_t<F, T&>>
1789-
*
1789+
*
17901790
* @details
17911791
* The return type is the same as \tcode{std::invoke_result_t<F, T&>},
17921792
* but wrapped in an optional.
@@ -1802,7 +1802,7 @@ class optional<T&> {
18021802
* @return optional
18031803
* @details
18041804
* The return type is the same as the return type of \p f, which must
1805-
* return an optional type.
1805+
* return an optional type.
18061806
*/
18071807
template <class F>
18081808
constexpr optional or_else(F&& f) const;

0 commit comments

Comments
 (0)