diff options
Diffstat (limited to '')
| -rw-r--r-- | src/construct/partial_destination.rs | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/src/construct/partial_destination.rs b/src/construct/partial_destination.rs index a2f638b..58d07c1 100644 --- a/src/construct/partial_destination.rs +++ b/src/construct/partial_destination.rs @@ -26,7 +26,8 @@  //! URLs.  //!  //! The destination is interpreted as the [string][] content type. -//! That means that character escapes and character reference are allowed. +//! That means that [character escapes][character_escape] and +//! [character references][character_reference] are allowed.  //!  //! ## References  //! @@ -34,6 +35,8 @@  //!  //! [definition]: crate::construct::definition  //! [string]: crate::content::string +//! [character_escape]: crate::construct::character_escape +//! [character_reference]: crate::construct::character_reference  //!  //! <!-- To do: link label end. --> | 
