From cca6a0455bb4ed95fc8e79bdc1f78dbf4ce1c1c0 Mon Sep 17 00:00:00 2001 From: Ethan Jones <39735022+ethanfjones@users.noreply.github.com> Date: Tue, 25 May 2021 08:26:42 -0400 Subject: [PATCH] Updated return_tip to drop_tip Comments said that the two code snippet accomplished the same thing. The first (p300.transfer(100, plate['A1'], plate['B1'])) would drop the tip in the trash while the second p300.pick_up_tip() p300.aspirate(100, plate.wells('A1')) p300.dispense(100, plate.wells('B1')) p300.return_tip() would return the tip to the tiprack. I changed return_tip in the second example to drop_tip so the two commands would be identical. --- api/docs/v2/new_examples.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/docs/v2/new_examples.rst b/api/docs/v2/new_examples.rst index 180a1e612dc..200e4a06bff 100644 --- a/api/docs/v2/new_examples.rst +++ b/api/docs/v2/new_examples.rst @@ -46,7 +46,7 @@ This accomplishes the same thing as the following basic commands: p300.pick_up_tip() p300.aspirate(100, plate.wells('A1')) p300.dispense(100, plate.wells('B1')) - p300.return_tip() + p300.drop_tip() ******************************