8026849: Fix typos in the GC code, part 2

Fixed typos in assert messages, flag descriptions and verbose messages

Reviewed-by: stefank, tschatzl
This commit is contained in:
Jesper Wilhelmsson 2013-12-10 15:11:02 +01:00
parent 5d460f1f3d
commit 40ba2bba2c
16 changed files with 27 additions and 31 deletions

View file

@ -1197,7 +1197,7 @@ char* os::format_boot_path(const char* format_string,
char fileSep,
char pathSep) {
assert((fileSep == '/' && pathSep == ':') ||
(fileSep == '\\' && pathSep == ';'), "unexpected seperator chars");
(fileSep == '\\' && pathSep == ';'), "unexpected separator chars");
// Scan the format string to determine the length of the actual
// boot classpath, and handle platform dependencies as well.