Add a note about buffering in from_reader
diff --git a/src/de.rs b/src/de.rs
index e85f3b0..28c89b8 100644
--- a/src/de.rs
+++ b/src/de.rs
@@ -2121,6 +2121,9 @@
 
 /// Deserialize an instance of type `T` from an IO stream of JSON.
 ///
+/// The content of the IO stream is deserialized directly from the stream
+/// without being buffered in memory by serde_json.
+///
 /// # Example
 ///
 /// ```rust