From 42e58df9e01928c40abff352e4f129fe15d3da54 Mon Sep 17 00:00:00 2001 From: Ethan Jones <39735022+ethanfjones@users.noreply.github.com> Date: Thu, 27 May 2021 18:32:18 -0400 Subject: [PATCH] docs(api): Remove deprecated behavior from api docs (#7828) Co-authored-by: Laura Cox Co-authored-by: Laura Cox <31892318+Laura-Danielle@users.noreply.github.com> Co-authored-by: Max Marrone --- api/docs/v2/new_examples.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/docs/v2/new_examples.rst b/api/docs/v2/new_examples.rst index 200e4a06bff..7795aacfe35 100644 --- a/api/docs/v2/new_examples.rst +++ b/api/docs/v2/new_examples.rst @@ -44,8 +44,8 @@ This accomplishes the same thing as the following basic commands: p300 = protocol.load_instrument('p300_single', 'right', tip_racks=[tiprack_1]) p300.pick_up_tip() - p300.aspirate(100, plate.wells('A1')) - p300.dispense(100, plate.wells('B1')) + p300.aspirate(100, plate['A1']) + p300.dispense(100, plate['B1']) p300.drop_tip() ******************************