Fix links

This commit is contained in:
Andrei Alexandrescu 2015-02-16 13:39:18 -08:00
parent 0fdb6e0c35
commit 11b32b56e5
19 changed files with 49 additions and 49 deletions

View file

@ -2,7 +2,7 @@
This module provides an $(D Array) type with deterministic memory usage not
reliant on the GC, as an alternative to the built-in arrays.
This module is a submodule of $(LINK2 std_container_package.html, std.container).
This module is a submodule of $(LINK2 std_container.html, std.container).
Source: $(PHOBOSSRC std/container/_array.d)
Macros:

View file

@ -2,7 +2,7 @@
This module provides a $(D BinaryHeap) adaptor that makes a binary heap out of
any user-provided random-access range.
This module is a submodule of $(LINK2 std_container_package.html, std.container).
This module is a submodule of $(LINK2 std_container.html, std.container).
Source: $(PHOBOSSRC std/container/_binaryheap.d)
Macros:

View file

@ -1,7 +1,7 @@
/**
This module implements a generic doubly-linked list container.
This module is a submodule of $(LINK2 std_container_package.html, std.container).
This module is a submodule of $(LINK2 std_container.html, std.container).
Source: $(PHOBOSSRC std/container/_dlist.d)
Macros:

View file

@ -136,7 +136,7 @@ The_primary_range_of_a_container:
While some _containers offer direct access to their elements e.g. via
$(D opIndex), $(D c.front) or $(D c.back), access
and modification of a _container's contents is generally done through
its primary $(LINK2 std_range_package.html, range) type,
its primary $(LINK2 std_range.html, range) type,
which is aliased as $(D C.Range). For example, the primary range type of
$(D Array!int) is $(D Array!int.Range).
@ -169,7 +169,7 @@ array.linearRemove(array[].find(2).takeOne());
assert(array[].equal([1, 3]));
---
When any $(LINK2 std_range_package.html, range) can be passed as an argument to
When any $(LINK2 std_range.html, range) can be passed as an argument to
a member function, the documention usually refers to the parameter's templated
type as $(D Stuff).

View file

@ -1,7 +1,7 @@
/**
This module implements a red-black tree container.
This module is a submodule of $(LINK2 std_container_package.html, std.container).
This module is a submodule of $(LINK2 std_container.html, std.container).
Source: $(PHOBOSSRC std/container/_rbtree.d)
Macros:

View file

@ -1,7 +1,7 @@
/**
This module implements a singly-linked list container.
This module is a submodule of $(LINK2 std_container_package.html, std.container).
This module is a submodule of $(LINK2 std_container.html, std.container).
Source: $(PHOBOSSRC std/container/_slist.d)
Macros:

View file

@ -1,7 +1,7 @@
/**
This module contains some common utilities used by containers.
This module is a submodule of $(LINK2 std_container_package.html, std.container).
This module is a submodule of $(LINK2 std_container.html, std.container).
Source: $(PHOBOSSRC std/container/_util.d)
Macros: