diff options
author | Per Jensen <perstofferjensen@gmail.com> | 2022-08-28 12:41:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-28 12:41:03 +0200 |
commit | 22337909ee00ff9a8c5d9dbb3e6ca7b463490be7 (patch) | |
tree | fbf076253f9261403df80fe7400ae8a16a5b0c1f /docs/userguide | |
parent | ba3995e5705a22e13bb5d2231ac22c77e4417747 (diff) | |
download | python-setuptools-git-22337909ee00ff9a8c5d9dbb3e6ca7b463490be7.tar.gz |
Update pyproject_config.rst
The sequence of TOML datatypes and Python datatypes are reversed, which is a bit confusing.
I suggest to align the sequence, so that array and table aligns with list and dict
Diffstat (limited to 'docs/userguide')
-rw-r--r-- | docs/userguide/pyproject_config.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/userguide/pyproject_config.rst b/docs/userguide/pyproject_config.rst index b1d4a4e3..88a6119a 100644 --- a/docs/userguide/pyproject_config.rst +++ b/docs/userguide/pyproject_config.rst @@ -111,7 +111,7 @@ Key Value Type (TOML) Notes .. note:: The `TOML value types`_ ``array`` and ``table/inline-table`` are roughly - equivalent to the Python's :obj:`dict` and :obj:`list` data types. + equivalent to the Python's :obj:`list` and :obj:`dict` data types, respectively. Please note that some of these configurations are deprecated or at least discouraged, but they are made available to ensure portability. |