diff options
author | seancarroll <seanc28@gmail.com> | 2021-01-16 15:14:16 -0600 |
---|---|---|
committer | seancarroll <seanc28@gmail.com> | 2021-01-16 15:14:16 -0600 |
commit | 956860b32114a0ca6d8d9af15175514f6a94e34a (patch) | |
tree | e702409117a469496ab99753c087cf5a2664cac8 /src/attributes | |
parent | e33b0b90e3a683a6c0431a50a8eb293aa3c3e326 (diff) | |
download | dotavious-956860b32114a0ca6d8d9af15175514f6a94e34a.zip |
fix some docs
Diffstat (limited to 'src/attributes')
-rw-r--r-- | src/attributes/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/attributes/mod.rs b/src/attributes/mod.rs index 3219a50..dafbf4a 100644 --- a/src/attributes/mod.rs +++ b/src/attributes/mod.rs @@ -1279,7 +1279,7 @@ pub trait NodeAttributes<'a> { /// Sets x and y margins of canvas, in inches. /// Both margins are set equal to the given value. - /// See [`crate::NodeAttributes::margin_point`] + /// See [`crate::attributes::NodeAttributes::margin_point`] fn margin(&mut self, margin: f32) -> &mut Self { self.margin_point(Point::new_2d(margin, margin)) } |