Skip to content

Commit

Permalink
Remove redundant doc links (#172)
Browse files Browse the repository at this point in the history
  • Loading branch information
mkeeter authored Nov 2, 2024
1 parent 8a8f0aa commit 36c8876
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions fidget/src/core/shape/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ pub use bounds::Bounds;
/// A shape represents an implicit surface
///
/// It is mostly agnostic to _how_ that surface is represented, wrapping a
/// [`Function`](Function) and a set of axes.
/// [`Function`] and a set of axes.
///
/// Shapes are shared between threads, so they should be cheap to clone. In
/// most cases, they're a thin wrapper around an `Arc<..>`.
Expand Down Expand Up @@ -187,7 +187,7 @@ impl<F: Function + Clone> Shape<F> {
}

impl<F> Shape<F> {
/// Borrows the inner [`Function`](Function) object
/// Borrows the inner [`Function`] object
pub fn inner(&self) -> &F {
&self.f
}
Expand Down Expand Up @@ -352,7 +352,7 @@ impl<T: Tape> ShapeTape<T> {
self.tape.recycle()
}

/// Returns a mapping from [`Var`](crate::var::Var) to evaluation index
/// Returns a mapping from [`Var`] to evaluation index
pub fn vars(&self) -> &VarMap {
self.tape.vars()
}
Expand Down
2 changes: 1 addition & 1 deletion fidget/src/solver/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! Solver for systems of equations expressed as sets of [`Function`]s
//! Solver for systems of equations expressed as sets of [Function] objects
use crate::{
eval::{BulkEvaluator, Function, Tape, TracingEvaluator},
types::Grad,
Expand Down

0 comments on commit 36c8876

Please sign in to comment.