From 7a636de589f3c1b0d048423ed57d32e3107ce0ea Mon Sep 17 00:00:00 2001 From: mavaylon1 Date: Mon, 11 Dec 2023 17:29:50 -0800 Subject: [PATCH] doc --- docs/gallery/plot_external_resources.py | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/docs/gallery/plot_external_resources.py b/docs/gallery/plot_external_resources.py index 6a49f4b3f..c8ef9ea93 100644 --- a/docs/gallery/plot_external_resources.py +++ b/docs/gallery/plot_external_resources.py @@ -310,15 +310,10 @@ def __init__(self, **kwargs): ############################################################################### # Using add_ref_termset # ------------------------------------------------------ -# :py:class:`~hdmf.common.resources.HERD` has multiple ways for users to add -# external references. The :py:func:`~hdmf.common.resources.HERD.add_ref_termset` +# The :py:func:`~hdmf.common.resources.HERD.add_ref_termset` # method allows users to not only validate terms, i.e., keys, but also -# add references for entire datasets, lists, arrays, etc. - -# The :py:func:`~hdmf.common.resources.HERD.add_ref_container` method is directly -# used for populating :py:class:`~hdmf.common.resources.HERD` when writing a file. -# :py:func:`~hdmf.common.resources.HERD.add_ref_termset` can be used for new files; -# however, it is also the best practice when adding references for existing files. +# add references for an entire datasets, rather than single entries as we saw +# prior with :py:func:`~hdmf.common.resources.HERD.add_ref`. # :py:func:`~hdmf.common.resources.HERD.add_ref_termset` has many optional fields, # giving the user a range of control when adding references. Let's see an example.