Skip to content

Commit

Permalink
docs(api): Fix typo in mix command example (#10339)
Browse files Browse the repository at this point in the history
Fixed typo in Mix command example

Fixed a typo in the Mix command example code. Changed line 360 from     pipette.mix(4, 100, plate.['A2']) to     pipette.mix(4, 100, plate['A2']). Removed the period.
  • Loading branch information
corndog2000 authored May 19, 2022
1 parent ae2957c commit 41371ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/docs/v2/new_atomic_commands.rst
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ The ``mix`` command takes up to three arguments: ``mix(repetitions, volume, loca
.. code-block:: python
# mix 4 times, 100uL, in plate:A2
pipette.mix(4, 100, plate.['A2'])
pipette.mix(4, 100, plate['A2'])
# mix 3 times, 50uL, in current location
pipette.mix(3, 50)
# mix 2 times, pipette's max volume, in current location
Expand Down

0 comments on commit 41371ef

Please sign in to comment.