Skip to content

Commit 3139543

Browse files
author
S L
committed
reword you've -> you have
1 parent b5740b7 commit 3139543

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/pl/project13/maven/git/JGitProvider.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,12 +85,12 @@ protected void prepareGitToExtractMoreDetailedReproInformation() throws MojoExec
8585
// more details parsed out bellow
8686
Ref head = git.getRef(Constants.HEAD);
8787
if (head == null) {
88-
throw new MojoExecutionException("Could not get HEAD Ref, are you sure you've set the dotGitDirectory property of this plugin to a valid path?");
88+
throw new MojoExecutionException("Could not get HEAD Ref, are you sure you have set the dotGitDirectory property of this plugin to a valid path?");
8989
}
9090
revWalk = new RevWalk(git);
9191
ObjectId headObjectId = head.getObjectId();
9292
if(headObjectId == null){
93-
throw new MojoExecutionException("Could not get HEAD Ref, are you sure you've some commits in the dotGitDirectory?");
93+
throw new MojoExecutionException("Could not get HEAD Ref, are you sure you have some commits in the dotGitDirectory?");
9494
}
9595
headCommit = revWalk.parseCommit(headObjectId);
9696
revWalk.markStart(headCommit);

0 commit comments

Comments
 (0)