Skip to content

Commit 90ebec5

Browse files
Fix erroneous description
1 parent 4012d2e commit 90ebec5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

NetcodePatcher.Cli/NetcodePatchCommand.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public NetcodePatchCommand()
2424
Add(new Argument<FileSystemInfo[]>("dependencies", "Paths to dependency folders/files") { Arity = ArgumentArity.ZeroOrMore }.ExistingOnly().NoUnc());
2525
Add(new Option<string?>(["--output", "-o"], "Output folder/file path").LegalFilePathsOnly());
2626
Add(new Option<bool>("--no-overwrite", "Sets output path to [assembly]_patched.dll, as opposed to renaming the original assembly").LegalFilePathsOnly());
27-
Add(new Option<bool>("--disable-parallel", "Don't publicize in parallel"));
27+
Add(new Option<bool>("--disable-parallel", "Don't patch in parallel"));
2828
Add(new Option<LogEventLevel>("--log-level", () => LogEventLevel.Information, "Sets the minimum log-level. Messages below this are ignored."));
2929
Add(new Option<string?>("--log-file", "Set a filepath to log to.") { Arity = ArgumentArity.ExactlyOne }.LegalFilePathsOnly());
3030

@@ -116,4 +116,4 @@ void Patch(FileInfo pluginAssembly)
116116
stopwatch.Stop();
117117
Log.Information("Done in {Time}", stopwatch.Elapsed);
118118
}
119-
}
119+
}

0 commit comments

Comments
 (0)