mirror of
https://github.com/dlang/phobos.git
synced 2025-05-02 08:00:48 +03:00
Fixed Typo
recursively was spelt incorrectly
This commit is contained in:
parent
713f35aace
commit
cb34ef28e3
1 changed files with 1 additions and 1 deletions
|
@ -2602,7 +2602,7 @@ need not be assignable at all to be swapped.
|
||||||
If $(D lhs) and $(D rhs) reference the same instance, then nothing is done.
|
If $(D lhs) and $(D rhs) reference the same instance, then nothing is done.
|
||||||
|
|
||||||
$(D lhs) and $(D rhs) must be mutable. If $(D T) is a struct or union, then
|
$(D lhs) and $(D rhs) must be mutable. If $(D T) is a struct or union, then
|
||||||
its fields must also all be (recursivelly) mutable.
|
its fields must also all be (recursively) mutable.
|
||||||
*/
|
*/
|
||||||
void swap(T)(ref T lhs, ref T rhs) @trusted pure nothrow
|
void swap(T)(ref T lhs, ref T rhs) @trusted pure nothrow
|
||||||
if (isBlitAssignable!T && !is(typeof(lhs.proxySwap(rhs))))
|
if (isBlitAssignable!T && !is(typeof(lhs.proxySwap(rhs))))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue