mirror of
https://github.com/dlang/phobos.git
synced 2025-05-06 02:45:12 +03:00
XREF -> REF (sed)
Done by: (find . -type f -name "*.d" -print0; \ find . -type f -name "*.dd" -print0) | \ xargs -0 sed -i -r \ 's/\$\(XREF\s+([^(),]*),\s*([^(),]*)\)/$(REF \2, std,\1)/g'
This commit is contained in:
parent
a207b27056
commit
764caefa36
37 changed files with 167 additions and 167 deletions
|
@ -385,7 +385,7 @@ range elements, different types of ranges are accepted:
|
|||
|
||||
/**
|
||||
To _copy at most $(D n) elements from a range, you may want to use
|
||||
$(XREF range, take):
|
||||
$(REF take, std,range):
|
||||
*/
|
||||
@safe unittest
|
||||
{
|
||||
|
@ -412,7 +412,7 @@ use $(LREF filter):
|
|||
}
|
||||
|
||||
/**
|
||||
$(XREF range, retro) can be used to achieve behavior similar to
|
||||
$(REF retro, std,range) can be used to achieve behavior similar to
|
||||
$(WEB sgi.com/tech/stl/copy_backward.html, STL's copy_backward'):
|
||||
*/
|
||||
@safe unittest
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue