Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Apr 11, 2024
1 parent e284f0d commit 80ef02f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/next-swc/crates/next-core/src/app_structure.rs
Original file line number Diff line number Diff line change
Expand Up @@ -711,13 +711,13 @@ fn directory_tree_to_entrypoints(
}

#[turbo_tasks::value]
struct DuplciateParallelRouteIssue {
struct DuplicateParallelRouteIssue {
app_dir: Vc<FileSystemPath>,
page: AppPage,
}

#[turbo_tasks::value_impl]
impl Issue for DuplciateParallelRouteIssue {
impl Issue for DuplicateParallelRouteIssue {
#[turbo_tasks::function]
async fn file_path(self: Vc<Self>) -> Result<Vc<FileSystemPath>> {
let this = self.await?;
Expand All @@ -744,7 +744,7 @@ async fn check_duplicate(
app_dir: Vc<FileSystemPath>,
) {
if !duplicate.insert(AppPath::from(loader_tree.page.clone())) {
DuplciateParallelRouteIssue {
DuplicateParallelRouteIssue {
app_dir,
page: loader_tree.page.clone(),
}
Expand Down

0 comments on commit 80ef02f

Please sign in to comment.