Mark Sibly 8 éve
szülő
commit
9e54f7f516

+ 2 - 0
modules/std/newdocs/manual.md

@@ -22,3 +22,5 @@ The standard module includes the following namespaces:
 | [[std.socket]]		| The Socket and SocketStream classes for UDP networking.
 | [[std.json]]			| Classes for loading and saving JSON data.
 
+@import streams.md
+

+ 3 - 0
modules/std/stream/filestream.monkey2

@@ -88,6 +88,9 @@ Class FileStream Extends Stream
 	
 	#rem monkeydoc Opens a file and returns a new filestream.
 	
+	Note: This method should not be used to open an 'asset stream' because assets are not always files. You should instead use 
+	[[Stream.Open]] for streams that have a stream path prefix such as `asset::`, `internal::`, `external::` etc.
+	
 	@param path The path of the file to open.
 	
 	@param mode The mode to open the file in: "r", "w" or "rw".