From a21f672859ba24a3e6a21d3114271d3149408a9e Mon Sep 17 00:00:00 2001 From: Steph Prince <40640337+stephprince@users.noreply.github.com> Date: Tue, 5 Mar 2024 14:28:36 -0800 Subject: [PATCH] update docstring to fix broken reference --- src/pynwb/ecephys.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pynwb/ecephys.py b/src/pynwb/ecephys.py index 759661435..f49a4fa09 100644 --- a/src/pynwb/ecephys.py +++ b/src/pynwb/ecephys.py @@ -28,7 +28,7 @@ class ElectrodeGroup(NWBContainer): {'name': 'position', 'type': 'array_data', 'doc': 'Compound dataset with stereotaxic position of this electrode group (x, y, z). ' 'Each element of the data array must have three elements or the dtype of the ' - 'array must be `(float, float, float)', 'default': None}) + 'array must be ``(float, float, float)``', 'default': None}) def __init__(self, **kwargs): args_to_set = popargs_to_dict(('description', 'location', 'device', 'position'), kwargs) super().__init__(**kwargs)