Skip to content

Commit 782b21e

Browse files
chore: Add '.html' at the end of foreign crate links to appease the link checker
1 parent fd9f25c commit 782b21e

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

libs/pavex_session_memory_store/src/lib.rs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -260,21 +260,21 @@ mod kit {
260260
///
261261
/// By default, it uses [`Session::new`].
262262
///
263-
/// [`Session`]: https://pavex.dev/docs/api_reference/pavex_session/struct.Session
264-
/// [`Session::new`]: https://pavex.dev/docs/api_reference/pavex_session/struct.Session#method.new
263+
/// [`Session`]: https://pavex.dev/docs/api_reference/pavex_session/struct.Session.html
264+
/// [`Session::new`]: https://pavex.dev/docs/api_reference/pavex_session/struct.Session.html#method.new
265265
pub session: Option<Constructor>,
266266
/// The constructor for [`IncomingSession`].
267267
///
268268
/// By default, it uses [`IncomingSession::extract`].
269269
///
270-
/// [`IncomingSession`]: https://pavex.dev/docs/api_reference/pavex_session/struct.IncomingSession
271-
/// [`IncomingSession::extract`]: https://pavex.dev/docs/api_reference/pavex_session/struct.IncomingSession#method.extract
270+
/// [`IncomingSession`]: https://pavex.dev/docs/api_reference/pavex_session/struct.IncomingSession.html
271+
/// [`IncomingSession::extract`]: https://pavex.dev/docs/api_reference/pavex_session/struct.IncomingSession.html#method.extract
272272
pub incoming_session: Option<Constructor>,
273273
/// Register [`SessionConfig`] as a configuration type.
274274
///
275275
/// By default, it uses `session` as configuration key.
276276
///
277-
/// [`SessionConfig`]: https://pavex.dev/docs/api_reference/pavex_session/struct.SessionConfig
277+
/// [`SessionConfig`]: https://pavex.dev/docs/api_reference/pavex_session/struct.SessionConfig.html
278278
pub session_config: Option<ConfigType>,
279279
/// The constructor for [`InMemorySessionStore`].
280280
///
@@ -288,8 +288,8 @@ mod kit {
288288
/// By default, it uses [`SessionStore::new`] with [`InMemorySessionStore`]
289289
/// as its underlying storage backend.
290290
///
291-
/// [`SessionStore`]: https://pavex.dev/docs/api_reference/pavex_session/struct.SessionStore
292-
/// [`SessionStore::new`]: https://pavex.dev/docs/api_reference/pavex_session/struct.SessionStore#method.new
291+
/// [`SessionStore`]: https://pavex.dev/docs/api_reference/pavex_session/struct.SessionStore.html
292+
/// [`SessionStore::new`]: https://pavex.dev/docs/api_reference/pavex_session/struct.SessionStore.html#method.new
293293
/// [`InMemorySessionStore`]: crate::InMemorySessionStore
294294
pub session_store: Option<Constructor>,
295295
/// A post-processing middleware to sync the session state with the session store
@@ -298,8 +298,8 @@ mod kit {
298298
/// By default, it's set to [`finalize_session`].
299299
/// The error is handled by [`FinalizeError::into_response`].
300300
///
301-
/// [`FinalizeError::into_response`]: https://pavex.dev/docs/api_reference/pavex_session/errors/enum.FinalizeError#method.into_response
302-
/// [`finalize_session`]: https://pavex.dev/docs/api_reference/pavex_session/fn.finalize_session
301+
/// [`FinalizeError::into_response`]: https://pavex.dev/docs/api_reference/pavex_session/errors/enum.FinalizeError.html#method.into_response
302+
/// [`finalize_session`]: https://pavex.dev/docs/api_reference/pavex_session/fn.finalize_session.html
303303
pub session_finalizer: Option<PostProcessingMiddleware>,
304304
}
305305

libs/pavex_session_sqlx/src/postgres.rs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -382,21 +382,21 @@ pub struct PostgresSessionKit {
382382
///
383383
/// By default, it uses [`Session::new`].
384384
///
385-
/// [`Session`]: https://pavex.dev/docs/api_reference/pavex_session/struct.Session
386-
/// [`Session::new`]: https://pavex.dev/docs/api_reference/pavex_session/struct.Session#method.new
385+
/// [`Session`]: https://pavex.dev/docs/api_reference/pavex_session/struct.Session.html
386+
/// [`Session::new`]: https://pavex.dev/docs/api_reference/pavex_session/struct.Session.html#method.new
387387
pub session: Option<Constructor>,
388388
/// The constructor for [`IncomingSession`].
389389
///
390390
/// By default, it uses [`IncomingSession::extract`].
391391
///
392-
/// [`IncomingSession`]: https://pavex.dev/docs/api_reference/pavex_session/struct.IncomingSession
393-
/// [`IncomingSession::extract`]: https://pavex.dev/docs/api_reference/pavex_session/struct.IncomingSession#method.extract
392+
/// [`IncomingSession`]: https://pavex.dev/docs/api_reference/pavex_session/struct.IncomingSession.html
393+
/// [`IncomingSession::extract`]: https://pavex.dev/docs/api_reference/pavex_session/struct.IncomingSession.html#method.extract
394394
pub incoming_session: Option<Constructor>,
395395
/// Register [`SessionConfig`] as a configuration type.
396396
///
397397
/// By default, it uses `session` as configuration key.
398398
///
399-
/// [`SessionConfig`]: https://pavex.dev/docs/api_reference/pavex_session/struct.SessionConfig
399+
/// [`SessionConfig`]: https://pavex.dev/docs/api_reference/pavex_session/struct.SessionConfig.html
400400
pub session_config: Option<ConfigType>,
401401
/// The constructor for [`PostgresSessionStore`].
402402
///
@@ -410,8 +410,8 @@ pub struct PostgresSessionKit {
410410
/// By default, it uses [`SessionStore::new`] with [`PostgresSessionStore`]
411411
/// as its underlying storage backend.
412412
///
413-
/// [`SessionStore`]: https://pavex.dev/docs/api_reference/pavex_session/struct.SessionStore
414-
/// [`SessionStore::new`]: https://pavex.dev/docs/api_reference/pavex_session/struct.SessionStore#method.new
413+
/// [`SessionStore`]: https://pavex.dev/docs/api_reference/pavex_session/struct.SessionStore.html
414+
/// [`SessionStore::new`]: https://pavex.dev/docs/api_reference/pavex_session/struct.SessionStore.html#method.new
415415
/// [`PostgresSessionStore`]: crate::PostgresSessionStore
416416
pub session_store: Option<Constructor>,
417417
/// A post-processing middleware to sync the session state with the session store
@@ -420,8 +420,8 @@ pub struct PostgresSessionKit {
420420
/// By default, it's set to [`finalize_session`].
421421
/// The error is handled by [`FinalizeError::into_response`].
422422
///
423-
/// [`FinalizeError::into_response`]: https://pavex.dev/docs/api_reference/pavex_session/errors/enum.FinalizeError#method.into_response
424-
/// [`finalize_session`]: https://pavex.dev/docs/api_reference/pavex_session/fn.finalize_session
423+
/// [`FinalizeError::into_response`]: https://pavex.dev/docs/api_reference/pavex_session/errors/enum.FinalizeError.html#method.into_response
424+
/// [`finalize_session`]: https://pavex.dev/docs/api_reference/pavex_session/fn.finalize_session.html
425425
pub session_finalizer: Option<PostProcessingMiddleware>,
426426
}
427427

0 commit comments

Comments
 (0)