doc: Fix links.

Since the `intra-doc-links` feature has been stabilized, we can see
more clearly that we have many broken links. This PR is an attempt to
fix them!
This commit is contained in:
Ivan Enderlin
2020-12-17 11:22:58 +01:00
parent bc0ba32424
commit 78faa4fa25
14 changed files with 38 additions and 38 deletions

View File

@@ -36,9 +36,8 @@ impl Table {
///
/// All the elements in the table will be set to the `init` value.
///
/// This function will construct the `Table` using the store [`Tunables`].
///
/// [`Tunables`]: crate::tunables::Tunables
/// This function will construct the `Table` using the store
/// [`BaseTunables`][crate::tunables::BaseTunables].
pub fn new(store: &Store, ty: TableType, init: Val) -> Result<Self, RuntimeError> {
let item = init.into_checked_anyfunc(store)?;
let tunables = store.tunables();