Skip to content

Commit 0c79366

Browse files
committed
Misc doc fixes
- Indentation issues - Removed ":param:`p`" references. Just using "``p``" instead.
1 parent 862d295 commit 0c79366

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

splunklib/searchcommands/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
field-name = ( "_" / alpha ) *( alpha / digit / "_" / "." / "-" )
3131
3232
It does not show that :code:`field-name` values may be comma-separated. This is because Splunk strips commas from
33-
the command line. A search command will never see them.
33+
the command line. A search command will never see them.
3434
3535
2. Search commands targeting versions of Splunk prior to 6.3 must be statically configured as follows:
3636

splunklib/searchcommands/search_command.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -810,15 +810,15 @@ def write_metric(self, name, value):
810810
:param name: Name of the metric.
811811
:type name: basestring
812812
813-
:param value: A 4-tuple containing the value of metric :param:`name` where
813+
:param value: A 4-tuple containing the value of metric ``name`` where
814814
815815
value[0] = Elapsed seconds or :const:`None`.
816816
value[1] = Number of invocations or :const:`None`.
817817
value[2] = Input count or :const:`None`.
818818
value[3] = Output count or :const:`None`.
819819
820-
The :data:`SearchMetric` type provides a convenient encapsulation of :param:`value`.
821-
The :data:`SearchMetric` type provides a convenient encapsulation of :param:`value`.
820+
The :data:`SearchMetric` type provides a convenient encapsulation of ``value``.
821+
The :data:`SearchMetric` type provides a convenient encapsulation of ``value``.
822822
823823
:return: :const:`None`.
824824

0 commit comments

Comments
 (0)