Browse Source

Minor typo correction

malknet42 12 years ago
parent
commit
1fd962c73e

+ 3 - 3
test-plugins/org.yakindu.sct.generator.c.test/src/org/yakindu/sct/generator/c/gtest/GTestHelper.java

@@ -78,7 +78,7 @@ public class GTestHelper {
 			do {
 				wait = false;
 
-				// waiting fro the processes termination
+				// waiting for the processes termination
 				try {
 					process.waitFor();
 				} catch ( InterruptedException e ) { /* we ignore if waiting was interrupted ... */ }
@@ -87,7 +87,7 @@ public class GTestHelper {
 				try {
 					exitCode = process.exitValue();
 				} catch ( IllegalThreadStateException e ) {
-					wait = true; // if we get an exception then the process has not finisched ...
+					wait = true; // if we get an exception then the process has not finished ...
 				}
 			} while (wait);
 
@@ -118,7 +118,7 @@ public class GTestHelper {
 
 		IPath targetPath = getTargetPath();
 
-		// copy model to junit workspace
+		// copy model to JUnit workspace
 		copyFileFromBundleToFolder(getModelBundle(), getModelPath(), targetPath);
 
 		String sgenFileName = getTestProgram() + ".sgen";