Skip to content

Commit

Permalink
Fix links in docs (#786)
Browse files Browse the repository at this point in the history
* Fix links in docs

* fix fixeddecimal
  • Loading branch information
Manishearth authored Jun 10, 2021
1 parent da5bfbf commit d8af2a9
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion components/icu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,14 @@ version = "0.2"
path = "../uniset"
default-features = false

[dependencies.fixed_decimal]
version = "0.2"
path = "../../utils/fixed_decimal"
default-features = false

[dev-dependencies]
icu_provider = { version = "0.2", path = "../../provider/core" }
icu_testdata = { version = "0.2", path = "../../provider/testdata" }
fixed_decimal = { version = "0.2", path = "../../utils/fixed_decimal" }
writeable = { version = "0.2", path = "../../utils/writeable" }

[features]
Expand Down
2 changes: 1 addition & 1 deletion ffi/capi/src/fixed_decimal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ pub extern "C" fn icu4x_fixed_decimal_create(number: i64) -> *mut ICU4XFixedDeci
#[no_mangle]
/// FFI version of [`FixedDecimal::multiply_pow10()`]. See its docs for more details.
///
/// Returns a [`ICU4XFixedDecimalMultiplyPow10Result`] struct. See its docs for more details.
/// Returns a boolean indicating whether the operation was successful.
pub extern "C" fn icu4x_fixed_decimal_multiply_pow10(
fd: &mut ICU4XFixedDecimal,
power: i16,
Expand Down
2 changes: 1 addition & 1 deletion utils/zerovec/src/map/kv.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use crate::VarZeroVec;
use crate::ZeroVec;
use std::cmp::Ordering;

/// Trait marking types which are allowed to be keys or values in [`ZeroMap`].
/// Trait marking types which are allowed to be keys or values in [`ZeroMap`](super::ZeroMap).
///
/// Users should not be calling methods of this trait directly, however if you are
/// implementing your own [`AsULE`] or [`AsVarULE`] type you may wish to implement
Expand Down
2 changes: 1 addition & 1 deletion utils/zerovec/src/map/vecs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use crate::ZeroVec;
use std::cmp::Ordering;
use std::mem;

/// Trait abstracting over [`ZeroVec`] and [`VarZeroVec`], for use in [`ZeroMap`]. You
/// Trait abstracting over [`ZeroVec`] and [`VarZeroVec`], for use in [`ZeroMap`](super::ZeroMap). You
/// should not be implementing or calling this trait directly.
pub trait ZeroVecLike<'a, T> {
/// The type received by `Self::binary_search()`
Expand Down

0 comments on commit d8af2a9

Please sign in to comment.