Browse Source

Fix typos

s/occured/occurred/
s/stablished/established/

Change-Id: Ib052bef60bd18043001a30ed43754ee1a5182016
Signed-off-by: Michael Keppler <Michael.Keppler@gmx.de>
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
stable-5.2
Michael Keppler 6 years ago committed by Matthias Sohn
parent
commit
d9e67c8d8f
  1. 4
      org.eclipse.jgit/resources/org/eclipse/jgit/internal/JGitText.properties
  2. 2
      org.eclipse.jgit/src/org/eclipse/jgit/attributes/FilterCommand.java
  3. 4
      org.eclipse.jgit/src/org/eclipse/jgit/transport/UploadPack.java

4
org.eclipse.jgit/resources/org/eclipse/jgit/internal/JGitText.properties

@ -302,7 +302,7 @@ expectedPktLineWithService=expected pkt-line with ''# service=-'', got ''{0}''
expectedReceivedContentType=expected Content-Type {0}; received Content-Type {1} expectedReceivedContentType=expected Content-Type {0}; received Content-Type {1}
expectedReportForRefNotReceived={0}: expected report for ref {1} not received expectedReportForRefNotReceived={0}: expected report for ref {1} not received
failedAtomicFileCreation=Atomic file creation failed, number of hard links to file {0} was not 2 but {1}" failedAtomicFileCreation=Atomic file creation failed, number of hard links to file {0} was not 2 but {1}"
failedToDetermineFilterDefinition=An exception occured while determining filter definitions failedToDetermineFilterDefinition=An exception occurred while determining filter definitions
failedUpdatingRefs=failed updating refs failedUpdatingRefs=failed updating refs
failureDueToOneOfTheFollowing=Failure due to one of the following: failureDueToOneOfTheFollowing=Failure due to one of the following:
failureUpdatingFETCH_HEAD=Failure updating FETCH_HEAD: {0} failureUpdatingFETCH_HEAD=Failure updating FETCH_HEAD: {0}
@ -638,7 +638,7 @@ sourceRefNotSpecifiedForRefspec=Source ref not specified for refspec: {0}
squashCommitNotUpdatingHEAD=Squash commit -- not updating HEAD squashCommitNotUpdatingHEAD=Squash commit -- not updating HEAD
sshCommandFailed=Execution of ssh command ''{0}'' failed with error ''{1}'' sshCommandFailed=Execution of ssh command ''{0}'' failed with error ''{1}''
sshUserNameError=Jsch error: failed to set SSH user name correctly to ''{0}''; using ''{1}'' picked up from SSH config file. sshUserNameError=Jsch error: failed to set SSH user name correctly to ''{0}''; using ''{1}'' picked up from SSH config file.
sslFailureExceptionMessage=Secure connection to {0} could not be stablished because of SSL problems sslFailureExceptionMessage=Secure connection to {0} could not be established because of SSL problems
sslFailureInfo=A secure connection to {0}\ncould not be established because the server''s certificate could not be validated. sslFailureInfo=A secure connection to {0}\ncould not be established because the server''s certificate could not be validated.
sslFailureCause=SSL reported: {0} sslFailureCause=SSL reported: {0}
sslFailureTrustExplanation=Do you want to skip SSL verification for this server? sslFailureTrustExplanation=Do you want to skip SSL verification for this server?

2
org.eclipse.jgit/src/org/eclipse/jgit/attributes/FilterCommand.java

@ -95,7 +95,7 @@ public abstract class FilterCommand {
* -1. -1 means that the {@link java.io.InputStream} is completely * -1. -1 means that the {@link java.io.InputStream} is completely
* processed. * processed.
* @throws java.io.IOException * @throws java.io.IOException
* when {@link java.io.IOException} occured while reading from * when {@link java.io.IOException} occurred while reading from
* {@link #in} or writing to {@link #out} * {@link #in} or writing to {@link #out}
*/ */
public abstract int run() throws IOException; public abstract int run() throws IOException;

4
org.eclipse.jgit/src/org/eclipse/jgit/transport/UploadPack.java

@ -1808,7 +1808,7 @@ public class UploadPack {
* @param deepenNots * @param deepenNots
* objects that the client specified using --shallow-exclude * objects that the client specified using --shallow-exclude
* @throws IOException * @throws IOException
* if an error occured while generating or writing the pack. * if an error occurred while generating or writing the pack.
*/ */
private void sendPack(PackStatistics.Accumulator accumulator, private void sendPack(PackStatistics.Accumulator accumulator,
FetchRequest req, FetchRequest req,
@ -1880,7 +1880,7 @@ public class UploadPack {
* @param deepenNots * @param deepenNots
* objects that the client specified using --shallow-exclude * objects that the client specified using --shallow-exclude
* @throws IOException * @throws IOException
* if an error occured while generating or writing the pack. * if an error occurred while generating or writing the pack.
*/ */
private void sendPack(final boolean sideband, private void sendPack(final boolean sideband,
FetchRequest req, FetchRequest req,

Loading…
Cancel
Save