Skip to content

Commit

Permalink
clippy: Fix remaining doc_markdown lints. (#509)
Browse files Browse the repository at this point in the history
  • Loading branch information
waywardmonkeys authored Mar 9, 2024
1 parent 0c94a07 commit 6828361
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .clippy.toml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
doc-valid-idents = ["WebGPU", "PostScript", ".."]
doc-valid-idents = ["MotionMark", "WebGPU", "PostScript", ".."]
2 changes: 1 addition & 1 deletion examples/simple/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ fn create_winit_window(event_loop: &winit::event_loop::EventLoopWindowTarget<()>
)
}

/// Helper function that creates a vello Renderer for a given RenderContext and Surface
/// Helper function that creates a vello `Renderer` for a given `RenderContext` and `RenderSurface`
fn create_vello_renderer(render_cx: &RenderContext, surface: &RenderSurface) -> Renderer {
Renderer::new(
&render_cx.devices[surface.dev_id].device,
Expand Down
2 changes: 1 addition & 1 deletion examples/with_winit/src/multi_touch.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright 2021 the egui Authors and the Vello Authors
// SPDX-License-Identifier: Apache-2.0 OR MIT

/// Adapted from https://github.com/emilk/egui/blob/212656f3fc6b931b21eaad401e5cec2b0da93baa/crates/egui/src/input_state/touch_state.rs
/// Adapted from <https://github.com/emilk/egui/blob/212656f3fc6b931b21eaad401e5cec2b0da93baa/crates/egui/src/input_state/touch_state.rs>
use std::{collections::BTreeMap, fmt::Debug};

use vello::kurbo::{Point, Vec2};
Expand Down

0 comments on commit 6828361

Please sign in to comment.