Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix two typos in documentation #1785

Merged
merged 1 commit into from
Nov 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/source/export.rst
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ How do I write a newly instantiated ``NWBFile`` to two different file paths?
-----------------------------------------------------------------------------------------------------------------------
PyNWB does not support writing an :py:class:`~pynwb.file.NWBFile` that was not read from a file to two different files.
For example, if you instantiate :py:class:`~pynwb.file.NWBFile` A and write it to file path 1, you cannot also write it
to file path 2. However, you can first write the :py:class:`~pynwb.file.NWBFile`` to file path 1, read the
to file path 2. However, you can first write the :py:class:`~pynwb.file.NWBFile` to file path 1, read the
:py:class:`~pynwb.file.NWBFile` from file path 1, and then export it to file path 2.

.. code-block:: python
Expand Down
2 changes: 1 addition & 1 deletion docs/source/validation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ The validator can be invoked like so:
python -m pynwb.validate test.nwb

If the file contains no NWB extensions, then this command will validate the file ``test.nwb`` against the
*core* NWB specification. On success, the output will is:
*core* NWB specification. On success, the output will be:

.. code-block:: text

Expand Down