Remove paras from ds slice functions

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@339747 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Rudi Theunissen 2016-07-30 23:43:33 +00:00
parent c913d5934d
commit 52d8a1c234
3 changed files with 11 additions and 20 deletions

View file

@ -43,16 +43,13 @@
<para>
If a length is given and is positive, the resulting
map will have up to that many pairs in it.
</para>
<para>
If the length results in an overflow, only
pairs up to the end of the map will be included.
</para>
<para>
If a length is given and is negative, the range
will stop that many pairs from the end.
</para>
<para>
If the length results in an overflow, only
pairs up to the end of the map will be included.
If a length is not provided, the resulting map
will contain all pairs between the index and the
end of the map.

View file

@ -43,16 +43,13 @@
<para>
If a length is given and is positive, the resulting
sequence will have up to that many values in it.
</para>
<para>
If the length results in an overflow, only
values up to the end of the sequence will be included.
</para>
<para>
If a length is given and is negative, the sequence
will stop that many values from the end.
</para>
<para>
If a length is not provided, the resulting sequence
will contain all values between the index and the
end of the sequence.

View file

@ -43,16 +43,13 @@
<para>
If a length is given and is positive, the resulting
set will have up to that many values in it.
</para>
<para>
If the length results in an overflow, only
values up to the end of the set will be included.
</para>
<para>
If a length is given and is negative, the set
will stop that many values from the end.
</para>
<para>
If a length is not provided, the resulting set
will contain all values between the index and the
end of the set.