DOC: Minor tweaks to docs

This commit is contained in:
bluss
2021-03-24 18:24:32 +01:00
parent 0c90469b61
commit fd724e0edb
+2 -2
View File
@@ -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. //! array-backed vector and string types, which store their contents inline.
//! //!
//! The arrayvec package has the following cargo features: //! The arrayvec package has the following cargo features:
@@ -21,7 +21,7 @@
//! //!
//! This version of arrayvec requires Rust 1.51 or later. //! 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(not(feature="std"), no_std)]
#![cfg_attr(feature="unstable-const-fn", feature(const_fn, const_maybe_uninit_assume_init, const_panic))] #![cfg_attr(feature="unstable-const-fn", feature(const_fn, const_maybe_uninit_assume_init, const_panic))]