diff --git a/crates/next-api/src/dynamic_imports.rs b/crates/next-api/src/dynamic_imports.rs index e49283bfc4a8ba..72c1d3d8bdaae0 100644 --- a/crates/next-api/src/dynamic_imports.rs +++ b/crates/next-api/src/dynamic_imports.rs @@ -56,8 +56,8 @@ where // [Note]: this seems to create duplicated chunks for the same module to the original import() call // and the explicit chunk we ask in here. So there'll be at least 2 // chunks for the same module, relying on - // naive hash to have additonal - // chunks in case if there are same modules being imported in differnt + // naive hash to have additional + // chunks in case if there are same modules being imported in different // origins. let chunk_group = build_chunk(module).await?; chunks_hash.insert(imported_raw_str.clone(), chunk_group); diff --git a/crates/next-core/src/next_config.rs b/crates/next-core/src/next_config.rs index 435a4ef0ecdaba..cb86100a99adaa 100644 --- a/crates/next-core/src/next_config.rs +++ b/crates/next-core/src/next_config.rs @@ -702,7 +702,7 @@ impl NextConfig { #[turbo_tasks::function] pub async fn env(self: Vc) -> Result> { // The value expected for env is Record, but config itself - // allows arbitary object (https://github.com/vercel/next.js/blob/25ba8a74b7544dfb6b30d1b67c47b9cb5360cb4e/packages/next/src/server/config-schema.ts#L203) + // allows arbitrary object (https://github.com/vercel/next.js/blob/25ba8a74b7544dfb6b30d1b67c47b9cb5360cb4e/packages/next/src/server/config-schema.ts#L203) // then stringifies it. We do the interop here as well. let env = self .await? diff --git a/crates/next-custom-transforms/src/transforms/server_actions.rs b/crates/next-custom-transforms/src/transforms/server_actions.rs index 63a0f919bfa5cd..2505247c12a30c 100644 --- a/crates/next-custom-transforms/src/transforms/server_actions.rs +++ b/crates/next-custom-transforms/src/transforms/server_actions.rs @@ -761,7 +761,7 @@ impl VisitMut for ServerActions { if self.in_action_file { let mut disallowed_export_span = DUMMY_SP; - // Currrently only function exports are allowed. + // Currently only function exports are allowed. match &mut stmt { ModuleItem::ModuleDecl(ModuleDecl::ExportDecl(ExportDecl { decl, span })) => { match decl { diff --git a/examples/cms-sitecore-xmcloud/sitecore/config/xmcloud-nextjs-starter.config b/examples/cms-sitecore-xmcloud/sitecore/config/xmcloud-nextjs-starter.config index e0a7e02d4a43fb..f8d2e329d98854 100644 --- a/examples/cms-sitecore-xmcloud/sitecore/config/xmcloud-nextjs-starter.config +++ b/examples/cms-sitecore-xmcloud/sitecore/config/xmcloud-nextjs-starter.config @@ -111,7 +111,7 @@ Note: the parameter sets defined here are comma-delimited (,) instead of &-delimited like the query string. Multiple sets are endline-delimited. --> - + mw=100,mh=50 diff --git a/packages/next/src/cli/next-info.ts b/packages/next/src/cli/next-info.ts index cb7be5b656a5bf..f393a5af1d252d 100755 --- a/packages/next/src/cli/next-info.ts +++ b/packages/next/src/cli/next-info.ts @@ -360,7 +360,7 @@ async function printVerboseInfo() { const bindings = await loadBindings( nextConfig.experimental?.useWasmBinary ) - // Run arbitary function to verify the bindings are loaded correctly. + // Run arbitrary function to verify the bindings are loaded correctly. const target = bindings.getTargetTriple() // We think next-swc is installed correctly if getTargetTriple returns.