add documentation for remove_node
diff --git a/src/graphmap.rs b/src/graphmap.rs
index ecd0d26..3905ea2 100644
--- a/src/graphmap.rs
+++ b/src/graphmap.rs
@@ -184,6 +184,8 @@
     }
 
     /// Return `true` if node `n` was removed.
+    ///
+    /// Computes in **O(V)** time, due to the removal of edges with other nodes.
     pub fn remove_node(&mut self, n: N) -> bool {
         let links = match self.nodes.swap_remove(&n) {
             None => return false,