@@ -14,14 +14,14 @@ Nonblocking Write
1414
1515 Write requests can be posted by the method call of :meth: `Variable.iput_var `.
1616 Same as :meth: `Variable.put_var `, the behavior of :meth: `Variable.iput_var `
17- varies depending on the pattern of provided optional arguments - `index `,
18- `start `, ` count `, `stride `, and `imap ` as shown below. Note that the method
19- only posts the request, which is not committed until :meth: `File.wait `. The
20- method call returns a request id that can be optionally passed to
21- :meth: ` File.wait ` to select this request.
17+ varies depending on the pattern of provided optional arguments - `start `,
18+ `count `, `stride `, and `imap ` as shown below. Note that the method only posts
19+ the request, which is not committed until :meth: `File.wait `. The method call
20+ returns a request id that can be optionally passed to :meth: ` File.wait ` to
21+ select this request.
2222
2323 - `data ` - Request to write an entire variable
24- - `data `, `index ` - Request to write a single data value
24+ - `data `, `start ` - Request to write a single data value
2525 - `data `, `start `, `count ` - Request to write an array of values
2626 - `data `, `start `, `count `, `stride ` - Request to write a subarray of values
2727 - `data `, `start `, `count `, `imap ` - Request to write a mapped array of values
@@ -58,10 +58,10 @@ Nonblocking Read
5858 the method call returns a request id that can be optionally passed to
5959 :meth: `File.wait ` to select this request. Similar to :meth: `Variable.get_var `,
6060 the behavior of :meth: `Variable.iget_var ` varies depending on the pattern of
61- provided optional arguments - `index `, ` start `, `count `, `stride `, and `imap `.
61+ provided optional arguments - `start `, `count `, `stride `, and `imap `.
6262
6363 - `buff ` - Request to read an entire variable
64- - `buff `, `index ` - Request to read a single data value
64+ - `buff `, `start ` - Request to read a single data value
6565 - `buff `, `start `, `count ` - Request to read an array of values
6666 - `buff `, `start `, `count `, `stride ` - Request to read a subarray of values
6767 - `buff `, `start `, `count `, `imap ` - Request to read a mapped array of values
0 commit comments