Browse Source

Typos.

git-svn-id: https://www.prismmodelchecker.org/svn/prism/prism/trunk@9987 bbc10eb1-c90d-0410-af57-cb519fbb1720
master
Dave Parker 11 years ago
parent
commit
079e9ea36a
  1. 6
      prism/src/prism/PrismCL.java

6
prism/src/prism/PrismCL.java

@ -1671,7 +1671,7 @@ public class PrismCL implements PrismModelListener
} }
// Unknown extension // Unknown extension
else { else {
throw new PrismException("Unknown extension \"" + ext + "\" for -exportmodel switch");
throw new PrismException("Unknown extension \"" + ext + "\" for -importmodel switch");
} }
// Check at least the transition matrix was imported // Check at least the transition matrix was imported
if (!importtrans) { if (!importtrans) {
@ -1687,7 +1687,7 @@ public class PrismCL implements PrismModelListener
} }
// Unknown option // Unknown option
else { else {
throw new PrismException("Unknown option \"" + opt + "\" for -exportmodel switch");
throw new PrismException("Unknown option \"" + opt + "\" for -importmodel switch");
} }
}*/ }*/
} }
@ -1841,7 +1841,7 @@ public class PrismCL implements PrismModelListener
/** /**
* Split a string of the form <files>:<options> into its two parts. * Split a string of the form <files>:<options> into its two parts.
* The latter can be empty, in which case the : is optional. * The latter can be empty, in which case the : is optional.
* Instances of :\ are ignored (nor treated as :) in case there is a Windows filename.
* Instances of :\ are ignored (not treated as :) in case there is a Windows filename.
* @return the two parts as an array of two strings. * @return the two parts as an array of two strings.
*/ */
private static String[] splitFilesAndOptions(String filesOptionsString) private static String[] splitFilesAndOptions(String filesOptionsString)

Loading…
Cancel
Save