-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
DOC: Updating capitalization of doc/source/development #33121
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
Changes from 26 commits
194d5a7
3d1960c
9da1e8a
55587f7
048fb78
d1ae9ea
83280b7
4314d3c
937b5df
589b0fe
f09689c
e71cffd
dc839c5
f354797
62d5164
f8b496c
5d01189
1685076
06dc1cd
a11dc2b
e55064d
fc1009d
eba0d13
726bd4c
0beeda1
f48b2dd
5ba464c
7c09610
940109d
35b1a37
5f0512e
7767d3c
888aa10
5fc4dcc
0ad8143
3ea43a5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ consistent code format throughout the project. For details see the | |
Patterns | ||
======== | ||
|
||
foo.__class__ | ||
Foo.class | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Actually this is on purpose, does There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It is showing this as an error, because foo is not inside exceptions. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @cleconte987 can you change the title to This will make the validation pass, and things look probably even better, without adding extra complexity. Thanks! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Roger that! |
||
------------- | ||
|
||
|
||
|
@@ -47,7 +47,7 @@ String formatting | |
Concatenated strings | ||
-------------------- | ||
|
||
f-strings | ||
F-strings | ||
~~~~~~~~~ | ||
|
||
pandas uses f-strings formatting instead of '%' and '.format()' string formatters. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -95,7 +95,7 @@ on :ref:`ecosystem.extensions`. | |
|
||
The interface consists of two classes. | ||
|
||
:class:`~pandas.api.extensions.ExtensionDtype` | ||
Class:~pandas.API.extensions.ExtensionDtype | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
A :class:`pandas.api.extensions.ExtensionDtype` is similar to a ``numpy.dtype`` object. It describes the | ||
|
@@ -115,7 +115,7 @@ example ``'category'`` is a registered string accessor for the ``CategoricalDtyp | |
|
||
See the `extension dtype dtypes`_ for more on how to register dtypes. | ||
|
||
:class:`~pandas.api.extensions.ExtensionArray` | ||
Class:~pandas.API.extensions.ExtensionArray | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
This class provides all the array-like functionality. ExtensionArrays are | ||
|
@@ -139,7 +139,7 @@ and comments contain guidance for properly implementing the interface. | |
|
||
.. _extending.extension.operator: | ||
|
||
:class:`~pandas.api.extensions.ExtensionArray` Operator Support | ||
Class:~pandas.API.extensions.ExtensionArray operator support | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
.. versionadded:: 0.24.0 | ||
|
@@ -210,7 +210,7 @@ will | |
|
||
.. _extending.extension.ufunc: | ||
|
||
NumPy Universal Functions | ||
NumPy universal functions | ||
^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
:class:`Series` implements ``__array_ufunc__``. As part of the implementation, | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
.. _api.arrays: | ||
|
||
============= | ||
Pandas arrays | ||
pandas arrays | ||
============= | ||
|
||
.. currentmodule:: pandas | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If everything in
development/
is fixed, can you change this in a new PR, so the whole directory is validated in the CI? Thanks!There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure!