Fix broken links in documentation
This commit is contained in:
parent
53a183fe0d
commit
85800c99ab
9 changed files with 73 additions and 54 deletions
|
|
@ -398,6 +398,7 @@ mod geometry {
|
|||
use super::Renderer;
|
||||
use crate::core::{Point, Radians, Size, Vector};
|
||||
use crate::graphics::geometry::{self, Fill, Path, Stroke, Text};
|
||||
use crate::graphics::Cached;
|
||||
|
||||
impl<L, R> geometry::Renderer for Renderer<L, R>
|
||||
where
|
||||
|
|
@ -432,10 +433,10 @@ mod geometry {
|
|||
Right(R),
|
||||
}
|
||||
|
||||
impl<L, R> geometry::Geometry for Geometry<L, R>
|
||||
impl<L, R> Cached for Geometry<L, R>
|
||||
where
|
||||
L: geometry::Geometry,
|
||||
R: geometry::Geometry,
|
||||
L: Cached,
|
||||
R: Cached,
|
||||
{
|
||||
type Cache = Geometry<L::Cache, R::Cache>;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue