Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverlietz committed Nov 23, 2024
1 parent fb1dfce commit 0655e20
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

/**
* Extends the {@link KarafDistributionConfigurationOption} to add functionality to store those values also in a
* distribution.info file in the distirbution.
* distribution.info file in the distribution.
*/
public class InternalKarafDistributionConfigurationOption extends KarafDistributionConfigurationOption {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public void replace(final File source) {
FileUtils.copyFile(source, file);
}
catch (IOException e) {
throw new IllegalStateException("Error occured while replacing file " + file, e);
throw new IllegalStateException("Error occurred while replacing file " + file, e);
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public void waitForExit() {
}

/**
* Create helper thread to safely shutdown the external framework process
* Create helper thread to safely shut down the external framework process
*
* @param process
* framework process
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public Integer getRMIPort() {
return port;
}

public long getRMILookupTimpout() {
public long getRMILookupTimeout() {
return timeout;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public static RBCLookupTimeoutOption waitForRBCFor(final Integer timeoutInMillis
* Creates a {@link org.ops4j.pax.exam.container.remote.options.RBCLookupTimeoutOption}.
*
* @param host
* to use for rmi rgistry
* to use for rmi registry
* @param port
* port where the rbc server is listening at
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import static org.junit.Assert.assertThat;

/**
* Test for this modules Options Parser implementation.
* Test for this module's Options Parser implementation.
*/
public class ParserTest {

Expand Down

0 comments on commit 0655e20

Please sign in to comment.