소스 검색

Fix: update readstream example url

Ronny Otto 6 년 전
부모
커밋
5c3d81728f
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      stream.mod/doc/readstream.bmx

+ 3 - 3
stream.mod/doc/readstream.bmx

@@ -1,13 +1,13 @@
 ' readstream.bmx
 ' readstream.bmx
 
 
-' opens a read stream to the blitzbasic.com website and
-' dumps the homepage to the console using readline and print
+' opens a read stream to the blitzmax.org website and
+' dumps the content to the console using readline and print
 
 
 SuperStrict
 SuperStrict
 
 
 Local in:TStream = ReadStream("http::blitzmax.org")
 Local in:TStream = ReadStream("http::blitzmax.org")
 
 
-If Not in RuntimeError "Failed to open a ReadStream to file http::www.blitzbasic.com"
+If Not in RuntimeError "Failed to open a ReadStream to file http::blitzmax.org"
 
 
 While Not Eof(in)
 While Not Eof(in)
 	Print ReadLine(in)
 	Print ReadLine(in)