//! // we wrap the whole app in a
to allow client-side navigation
//! // from our nav links below
@@ -100,7 +100,7 @@
//! // loads the contact list data once; doesn't reload when nested routes change
//! let contacts = create_resource(|| (), |_| contact_list_data());
//! view! {
-//!
+//!
//!
//! // show the contacts
//!
@@ -117,7 +117,7 @@
//! fn Contact() -> impl IntoView {
//! let params = use_params_map();
//! let data = create_resource(
-//!
+//!
//! move || params.with(|p| p.get("id").cloned().unwrap_or_default()),
//! move |id| contact_data(id)
//! );
@@ -182,6 +182,8 @@
//!
//! **Important Note:** You must enable one of `csr`, `hydrate`, or `ssr` to tell Leptos
//! which mode your app is operating in.
+//!
+//! [`Leptos`]:
#![cfg_attr(feature = "nightly", feature(auto_traits))]
#![cfg_attr(feature = "nightly", feature(negative_impls))]
diff --git a/router/src/matching/matcher.rs b/router/src/matching/matcher.rs
index 3e5c90ab0c..1e9fdc1a56 100644
--- a/router/src/matching/matcher.rs
+++ b/router/src/matching/matcher.rs
@@ -1,5 +1,5 @@
// Implementation based on Solid Router
-// see https://github.com/solidjs/solid-router/blob/main/src/utils.ts
+// see
use crate::ParamsMap;
diff --git a/router/src/matching/resolve_path.rs b/router/src/matching/resolve_path.rs
index 271ac712c0..e774cda21a 100644
--- a/router/src/matching/resolve_path.rs
+++ b/router/src/matching/resolve_path.rs
@@ -1,5 +1,5 @@
// Implementation based on Solid Router
-// see https://github.com/solidjs/solid-router/blob/main/src/utils.ts
+// see
use std::borrow::Cow;