File tree Expand file tree Collapse file tree
crates/codegen/tests/snapshots Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1392,16 +1392,10 @@ impl __sdk::InModule for RemoteTables {
13921392///
13931393/// - [`DbConnection::frame_tick`].
13941394#[cfg_attr(not(target_arch = "wasm32"), doc = "- [`DbConnection::run_threaded`].")]
1395- #[cfg_attr(
1396- target_arch = "wasm32",
1397- doc = "- [`DbConnection::run_background_task`]."
1398- )]
1395+ #[cfg_attr(target_arch = "wasm32", doc = "- [`DbConnection::run_background_task`].")]
13991396/// - [`DbConnection::run_async`].
14001397/// - [`DbConnection::advance_one_message`].
1401- #[cfg_attr(
1402- not(target_arch = "wasm32"),
1403- doc = "- [`DbConnection::advance_one_message_blocking`]."
1404- )]
1398+ #[cfg_attr(not(target_arch = "wasm32"), doc = "- [`DbConnection::advance_one_message_blocking`].")]
14051399/// - [`DbConnection::advance_one_message_async`].
14061400///
14071401/// Which of these methods you should call depends on the specific needs of your application,
Original file line number Diff line number Diff line change @@ -1172,6 +1172,7 @@ fn build_db_ctx_inner<M: SpacetimeModule>(
11721172 } ) )
11731173}
11741174
1175+ #[ allow( clippy:: too_many_arguments) ]
11751176/// Assemble and return a [`DbContextImpl`] from the provided [`DbContextImplInner`], and channels.
11761177fn build_db_ctx < M : SpacetimeModule > (
11771178 #[ cfg( not( feature = "web" ) ) ] runtime_handle : runtime:: Handle ,
You can’t perform that action at this time.
0 commit comments