diff --git a/src/api/wayfire/nonstd/observer_ptr.h b/src/api/wayfire/nonstd/observer_ptr.h index bb67b3a07..2cfeb0cca 100644 --- a/src/api/wayfire/nonstd/observer_ptr.h +++ b/src/api/wayfire/nonstd/observer_ptr.h @@ -292,7 +292,7 @@ template< class W1, class W2 > bool operator<( observer_ptr p1, observer_ptr p2 ) { // return std::less()( p1.get(), p2.get() ); - // where W3 is the composite pointer type (C++14 §5) of W1* and W2*. + // where W3 is the composite pointer type (C++14 Section 5) of W1* and W2*. return std::less< typename detail::common_type::type >()( p1.get(), p2.get() ); }