From 77faa569648056db87bf3ef1a209b2b0e0c6b21a Mon Sep 17 00:00:00 2001 From: Joe Wojak Date: Tue, 24 Oct 2023 14:56:54 -0400 Subject: [PATCH] Fix code snippet in touch_tip Another instance of italics instead of monospace. --- api/src/opentrons/protocol_api/instrument_context.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api/src/opentrons/protocol_api/instrument_context.py b/api/src/opentrons/protocol_api/instrument_context.py index d8069211e9b..cd3b629d10c 100644 --- a/api/src/opentrons/protocol_api/instrument_context.py +++ b/api/src/opentrons/protocol_api/instrument_context.py @@ -534,8 +534,8 @@ def touch_tip( touch tip at current well's edges. :type location: :py:class:`.Well` or None :param radius: Describes the proportion of the target well's - radius. When `radius=1.0`, the pipette tip will move to - the edge of the target well. When `radius=0.5`, it will + radius. When ``radius=1.0``, the pipette tip will move to + the edge of the target well. When ``radius=0.5``, it will move to 50% of the well's radius. Default: 1.0 (100%) :type radius: float :param v_offset: How far above or below the well to touch the tip, measured in mm. @@ -551,7 +551,7 @@ def touch_tip( :type speed: float :raises: ``UnexpectedTipRemovalError`` -- if no tip is attached to the pipette :raises RuntimeError: If no location is specified and location cache is - None. This should happen if `touch_tip` is called + None. This should happen if ``touch_tip`` is called without first calling a method that takes a location (e.g., :py:meth:`.aspirate`, :py:meth:`dispense`)