Skip to content

Commit b926015

Browse files
committed
Fix a few doc strings
1 parent 21e16da commit b926015

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ def _print_skip_list():
233233

234234

235235
def _open_error_in_pycharm(call):
236-
"""Attempt to open error locations in PyCharm. Use with -x / --exitfirst"""
236+
"""Attempt to open error locations in PyCharm. Use with --exitfirst (-x)"""
237237
# src_path, src_line, func_name = rep.location
238238
src_path = call.excinfo.traceback[-1].path
239239
src_line = call.excinfo.traceback[-1].lineno + 1

gmn/doc/overview.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
The :doc:`/gmn/index` is a DataONE Member Node :term:`MN`). It provides an implementation of MN APIs and can be used by organizations to expose their science data to DataONE if they do not wish to reate their own, native MN.
1+
The :doc:`/gmn/index` is a DataONE Member Node :term:`MN`). It provides an implementation of MN APIs and can be used by organizations to expose their science data to DataONE if they do not wish to create their own, native MN.
22

33
GMN can be used as a standalone MN or it can be used for exposing data that is already available on the web, to DataONE. When used in this way, GMN provides a DataONE compatible interface to existing data and does not store the data.
44

gmn/src/d1_gmn/tests/test_revision_archive.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
import d1_gmn.tests.gmn_test_case
2929

3030

31-
class TestArchiveRevision(d1_gmn.tests.gmn_test_case.GMNTestCase):
31+
class TestRevisionArchive(d1_gmn.tests.gmn_test_case.GMNTestCase):
3232
@responses.activate
3333
def test_1000(self, cn_mn_client_v1_v2):
3434
"""archive(): Archived flag correctly set and represented"""

test_utilities/src/d1_test/d1_test_case.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def capture_std():
106106

107107
def get_caplog_text(caplog, logger_name=None):
108108
"""Return the log messages currently captured by the caplog fixture
109-
If {module_name} is set, only messages from the given module are returned.
109+
- If {logger_name} is set, only messages from the given logger are returned.
110110
"""
111111
return '\n'.join([
112112
r.getMessage()

0 commit comments

Comments
 (0)