aboutsummaryrefslogtreecommitdiff
path: root/slf4j-migrator/src/test/java/org/slf4j/migrator/AternativeApproach.java
diff options
context:
space:
mode:
Diffstat (limited to 'slf4j-migrator/src/test/java/org/slf4j/migrator/AternativeApproach.java')
-rw-r--r--slf4j-migrator/src/test/java/org/slf4j/migrator/AternativeApproach.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/slf4j-migrator/src/test/java/org/slf4j/migrator/AternativeApproach.java b/slf4j-migrator/src/test/java/org/slf4j/migrator/AternativeApproach.java
index d4b090a2..0626b871 100644
--- a/slf4j-migrator/src/test/java/org/slf4j/migrator/AternativeApproach.java
+++ b/slf4j-migrator/src/test/java/org/slf4j/migrator/AternativeApproach.java
@@ -34,7 +34,7 @@ import junit.framework.TestCase;
public class AternativeApproach extends TestCase {
/**
- * In this test we see that we cans use more simple Pattern to do the
+ * In this test we see that we can use more simple Pattern to do the
* conversion
*
*/
@@ -55,7 +55,7 @@ public class AternativeApproach extends TestCase {
/**
* In this test we replace, using the simple Pattern (Log), the full Log
- * declaration and instanciation. This is not convenient because we will also
+ * declaration and instantiation. This is not convenient because we will also
* replace all String containing "Log".
*/
public void test2() {
@@ -82,7 +82,7 @@ public class AternativeApproach extends TestCase {
}
/**
- * In this test we use a simple Pattern to replace the log instanciation
+ * In this test we use a simple Pattern to replace the log instantiation
* without influence on Log declaration.
*
*/
@@ -101,7 +101,7 @@ public class AternativeApproach extends TestCase {
/**
* In this test we try to replace keyword Log without influence on String
- * containg Log We see that we have to use two differents Patterns
+ * containing Log We see that we have to use two different Patterns
*/
public void test4() {
Pattern pat = Pattern.compile("(\\sLog\\b)");