[librsvg: 13/17] path_builder.rs: links to doc items by name
- From: Marge Bot <marge-bot src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [librsvg: 13/17] path_builder.rs: links to doc items by name
- Date: Wed, 23 Jun 2021 19:26:04 +0000 (UTC)
commit 5acd705ba5fefced2117421143c5892daf9dd948
Author: Federico Mena Quintero <federico gnome org>
Date: Wed Jun 23 10:53:24 2021 -0500
path_builder.rs: links to doc items by name
Part-of: <https://gitlab.gnome.org/GNOME/librsvg/-/merge_requests/552>
src/path_builder.rs | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/src/path_builder.rs b/src/path_builder.rs
index 811660ec..f96b0dc0 100644
--- a/src/path_builder.rs
+++ b/src/path_builder.rs
@@ -3,13 +3,13 @@
//! Path data can consume a significant amount of memory in complex SVG documents. This
//! module deals with this as follows:
//!
-//! * The path parser pushes commands into a [`PathBuilder`](struct.PathBuilder.html). This is a
-//! mutable, temporary storage for path data.
+//! * The path parser pushes commands into a [`PathBuilder`]. This is a mutable,
+//! temporary storage for path data.
//!
-//! * Then, the `PathBuilder` gets turned into a long-term, immutable [`Path`](struct.Path.html) that
-//! has a more compact representation.
+//! * Then, the [`PathBuilder`] gets turned into a long-term, immutable [`Path`] that has
+//! a more compact representation.
//!
-//! The code tries to reduce work in the allocator, by using a `TinyVec` with space for at
+//! The code tries to reduce work in the allocator, by using a [`TinyVec`] with space for at
//! least 32 commands on the stack for `PathBuilder`; most paths in SVGs in the wild have
//! fewer than 32 commands, and larger ones will spill to the heap.
//!
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]