From fd724e0edb6e39d7b8053c189ceb2f2e9e1ea7d6 Mon Sep 17 00:00:00 2001 From: bluss Date: Wed, 24 Mar 2021 18:24:32 +0100 Subject: [PATCH] DOC: Minor tweaks to docs --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 53a5e16..b927015 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -//! **arrayvec** provides the types `ArrayVec` and `ArrayString`: +//! **arrayvec** provides the types [`ArrayVec`] and [`ArrayString`]: //! array-backed vector and string types, which store their contents inline. //! //! The arrayvec package has the following cargo features: @@ -21,7 +21,7 @@ //! //! This version of arrayvec requires Rust 1.51 or later. //! -#![doc(html_root_url="https://docs.rs/arrayvec/0.5/")] +#![doc(html_root_url="https://docs.rs/arrayvec/0.6/")] #![cfg_attr(not(feature="std"), no_std)] #![cfg_attr(feature="unstable-const-fn", feature(const_fn, const_maybe_uninit_assume_init, const_panic))]