Link to std::string::empty
diff --git a/src/cxx_string.rs b/src/cxx_string.rs
index d3d128c..baad468 100644
--- a/src/cxx_string.rs
+++ b/src/cxx_string.rs
@@ -36,6 +36,10 @@
     }
 
     /// Returns true if `self` has a length of zero bytes.
+    ///
+    /// Matches the behavior of C++ [std::string::empty][empty].
+    ///
+    /// [empty]: https://en.cppreference.com/w/cpp/string/basic_string/empty
     pub fn is_empty(&self) -> bool {
         self.len() == 0
     }