diff --git a/README.md b/README.md index f5c034f..7bf9aef 100644 --- a/README.md +++ b/README.md @@ -2002,7 +2002,7 @@ Memory View ### Decode ```python -.write() # Appends mview to the binary file. +.write() # Writes mview to the binary file. = bytes() # Creates a new bytes object. = .join() # Joins mviews using bytes object as sep. = list() # Returns list of ints or floats. diff --git a/index.html b/index.html index 4604258..b3f5b29 100644 --- a/index.html +++ b/index.html @@ -1771,7 +1771,7 @@ db = connector.connect(host=<str>, user=<str>, password=<str>, -

Decode

<bin_file>.write(<mview>)                      # Appends mview to the binary file.
+

Decode

<bin_file>.write(<mview>)                      # Writes mview to the binary file.
 <bytes> = bytes(<mview>)                       # Creates a new bytes object.
 <bytes> = <bytes>.join(<coll_of_mviews>)       # Joins mviews using bytes object as sep.
 <list>  = list(<mview>)                        # Returns list of ints or floats.