Skip to content

Commit fd33752

Browse files
committed
Fix a documentation typo in ShellException and HistoryAnalysis
1 parent 3a17a78 commit fd33752

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/org/variantsync/diffdetective/analysis/HistoryAnalysis.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
import java.util.function.Consumer;
2424

2525
/**
26-
* An analyses that is performed for the entire commit histories of each given git repositoy.
26+
* An analyses that is performed for the entire commit histories of each given git repository.
2727
* @param repositoriesToAnalyze The repositories whose commit history should be analyzed.
2828
* @param outputDir The directory to which any produced results should be written.
2929
* @param commitsToProcessPerThread Number of commits that should be processed by each single thread if multithreading is used.

src/main/java/org/variantsync/diffdetective/shell/ShellException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public ShellException(Exception e) {
2121

2222
/**
2323
* Constructs a {@code ShellException} on command failures indicated by an exit code.
24-
* If possible both {@code stdout} and {@code stderr} should be provided in @{code output}.
24+
* If possible both {@code stdout} and {@code stderr} should be provided in {@code output}.
2525
*/
2626
public ShellException(List<String> output) {
2727
super(convert(output));

0 commit comments

Comments
 (0)