Skip to content

Commit 3d0c356

Browse files
Spelling
1 parent 99261f1 commit 3d0c356

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/com/assertthat/selenium_shutterbug/utils/file/FileUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public static String getJsScript(String filePath) {
2424
try {
2525
InputStream is = Thread.currentThread().getContextClassLoader().getResourceAsStream(filePath);
2626
if (is == null) {
27-
// This is needed to load the files in an OSGI enviroment when enclosed in a bundle
27+
// This is needed to load the files in an OSGI environment when enclosed in a bundle
2828
is = FileUtil.class.getClassLoader().getResourceAsStream(filePath);
2929
}
3030
// if the input stream is still null, this will avoid a non descriptive null pointer exception

src/main/java/com/assertthat/selenium_shutterbug/utils/web/Browser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public Double getDevicePixelRatio() {
7171
return devicePixelRatio;
7272
}
7373

74-
public static void wait(int milis) {
74+
public static void wait(int ms) {
7575
try {
7676
Thread.sleep(milis);
7777
} catch (InterruptedException e) {

0 commit comments

Comments
 (0)