1
0
mirror of https://github.com/0xAX/linux-insides.git synced 2025-01-02 20:00:56 +00:00

Update sentence grammar

Remove "never" from end of sentence and change "can't exceed to "can never exceed"
This commit is contained in:
int3rrupt 2017-07-30 08:24:36 -07:00
parent 0c1a6c534a
commit 9979317453
2 changed files with 2 additions and 1 deletions

View File

@ -44,7 +44,7 @@ There are two types of limits:
* `soft` * `soft`
* `hard` * `hard`
The first provides actual limit for a resource of a process. The second is a ceiling value of a `soft` limit and can be set only by superuser. So, `soft` limit can't exceed related `hard` limit never. The first provides actual limit for a resource of a process. The second is a ceiling value of a `soft` limit and can be set only by superuser. So, `soft` limit can never exceed related `hard` limit.
Both these values are combined in the `rlimit` structure: Both these values are combined in the `rlimit` structure:

View File

@ -105,3 +105,4 @@ Thank you to all contributors:
* [Nathan Dautenhahn](https://github.com/ndauten) * [Nathan Dautenhahn](https://github.com/ndauten)
* [Sachin Patil](https://github.com/psachin) * [Sachin Patil](https://github.com/psachin)
* [Stéphan Gorget](https://github.com/phantez) * [Stéphan Gorget](https://github.com/phantez)
* [Adrian Reyes](https://github.com/int3rrupt)