Skip to content

Commit

Permalink
Merge pull request #179 from jtylr/patch-1
Browse files Browse the repository at this point in the history
Fix grammatical error on SVN access exception
  • Loading branch information
jglick committed Jun 16, 2017
2 parents 8ef2211 + fd1f42e commit 4e6d15a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/hudson/scm/SubversionSCM.java
Original file line number Diff line number Diff line change
Expand Up @@ -3107,7 +3107,7 @@ public FormValidation checkCredentialsId(StaplerRequest req, @Nonnull Item conte
}
} catch (SVNException e) {
LOGGER.log(Level.SEVERE, e.getErrorMessage().getMessage());
return FormValidation.error("Unable to access to repository");
return FormValidation.error("Unable to access the repository");
}
return FormValidation.ok();
}
Expand Down

0 comments on commit 4e6d15a

Please sign in to comment.