Skip to content

Commit bbc4d26

Browse files
taranarmomroeschke
andauthored
make backticks double
Co-authored-by: Matthew Roeschke <[email protected]>
1 parent 9591092 commit bbc4d26

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pandas/core/frame.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ class DataFrame(NDFrame, OpsMixin):
531531
will perform column selection instead.
532532
dtype : dtype, default None
533533
Data type to force. Only a single dtype is allowed. If None, infer.
534-
If `data` is DataFrame then is ignored.
534+
If ``data`` is DataFrame then is ignored.
535535
copy : bool or None, default None
536536
Copy data from inputs.
537537
For dict data, the default of None behaves like ``copy=True``. For DataFrame

pandas/core/series.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ class Series(base.IndexOpsMixin, NDFrame): # type: ignore[misc]
256256
Data type for the output Series. If not specified, this will be
257257
inferred from `data`.
258258
See the :ref:`user guide <basics.dtypes>` for more usages.
259-
If `data` is Series then is ignored.
259+
If ``data`` is Series then is ignored.
260260
name : Hashable, default None
261261
The name to give to the Series.
262262
copy : bool, default False

0 commit comments

Comments
 (0)