Ignore:
Timestamp:
10/30/11 21:07:02 (13 years ago)
Author:
masberg
Message:

Fix typos

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/org.modelica.mdt.test/src/org/modelica/mdt/test/util/CodeDepot.java

    r435 r1051  
    4444/**
    4545 * This file contains some code snippets that can
    46  * are usefull to copy'n'paste while testing/debugging but
     46 * are useful to copy'n'paste while testing/debugging but
    4747 * don't quite fit into some proper class.
    4848 */
     
    5252 * Show calling test methods
    5353 *
    54  * Prints to standard out all JUnit testmethods that are running
    55  * this code. Usefull to find out exactly which tests are invoking
    56  * some particular code. Just past it at the begining of whatever
     54 * Prints to standard out all JUnit test methods that are running
     55 * this code. Useful to find out exactly which tests are invoking
     56 * some particular code. Just past it at the beginning of whatever
    5757 * block you want to check-out.
    5858 */
     
    8282 * based on a seed.
    8383 * The length of the string is random up to maxLenght.
    84  * This function is determenistic, given the same seed and maxLength function
     84 * This function is deterministic, given the same seed and maxLength function
    8585 * always returns same string.
    8686 */
     
    113113 * @param width string will be formatted as lines of source code with provided
    114114 * maximal width
    115  * @return the provided string with all wierd characters escaped, a format
     115 * @return the provided string with all weird characters escaped, a format
    116116 * suitable to paste into java source code
    117117 */
     
    175175//  /*
    176176//   * prepend "\\u" and zeros to make the hex number exactly 4 characters long
    177 //   * and to create a leagal unicode escape secvence
     177//   * and to create a legal unicode escape sequence
    178178//   */
    179179//  return "\\u" + "0000".substring(0, 4 - hex.length()) + hex;
Note: See TracChangeset for help on using the changeset viewer.