diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2016-07-19 21:41:20 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2016-07-19 21:41:20 (GMT) |
commit | 48e3f9820623a7a27e1c7edffa840d90c5a25cdd (patch) | |
tree | e6e6535f79cd640003ed10fa83b3a882e665af5e /Doc/library/resource.rst | |
parent | 221945056da4540506ff2303c07324e60b234e57 (diff) | |
download | cpython-48e3f9820623a7a27e1c7edffa840d90c5a25cdd.zip cpython-48e3f9820623a7a27e1c7edffa840d90c5a25cdd.tar.gz cpython-48e3f9820623a7a27e1c7edffa840d90c5a25cdd.tar.bz2 |
Issue #25393: Fix probable copy/paste error in resource docs
Patch by Alakshendra Yadav.
Diffstat (limited to 'Doc/library/resource.rst')
-rw-r--r-- | Doc/library/resource.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/resource.rst b/Doc/library/resource.rst index b213793..bdfe5f6 100644 --- a/Doc/library/resource.rst +++ b/Doc/library/resource.rst @@ -125,8 +125,7 @@ platform. .. data:: RLIMIT_FSIZE - The maximum size of a file which the process may create. This only affects the - stack of the main thread in a multi-threaded process. + The maximum size of a file which the process may create. .. data:: RLIMIT_DATA @@ -136,7 +135,8 @@ platform. .. data:: RLIMIT_STACK - The maximum size (in bytes) of the call stack for the current process. + The maximum size (in bytes) of the call stack for the current process. This only + affects the stack of the main thread in a multi-threaded process. .. data:: RLIMIT_RSS |