diff --git a/README.md b/README.md index ce97b3f..5f2e5ce 100644 --- a/README.md +++ b/README.md @@ -1600,7 +1600,7 @@ Open ``` ```python -.write() # Writes a string or bytes object to the file. +.write() # Writes a string or bytes object. .writelines() # Writes a coll. of strings or bytes objects. .flush() # Flushes write buffer. Runs every 4096/8192 B. .close() # Closes the file after flushing write buffer. diff --git a/index.html b/index.html index 0cd45a5..869e1e8 100644 --- a/index.html +++ b/index.html @@ -1371,7 +1371,7 @@ args = p.parse_args() # Returns a list of remaining lines. <str/bytes> = next(<file>) # Returns a line using buffer. Do not mix. -
<file>.write(<str/bytes>)           # Writes a string or bytes object to the file.
+
<file>.write(<str/bytes>)           # Writes a string or bytes object.
 <file>.writelines(<collection>)     # Writes a coll. of strings or bytes objects.
 <file>.flush()                      # Flushes write buffer. Runs every 4096/8192 B.
 <file>.close()                      # Closes the file after flushing write buffer.