diff src/share/vm/adlc/adlparse.cpp @ 605:98cb887364d3

6810672: Comment typos Summary: I have collected some typos I have found while looking at the code. Reviewed-by: kvn, never
author twisti
date Fri, 27 Feb 2009 13:27:09 -0800
parents dbbe28fc66b5
children 7bb995fbd3c0
line wrap: on
line diff
--- a/src/share/vm/adlc/adlparse.cpp	Fri Feb 27 08:34:19 2009 -0800
+++ b/src/share/vm/adlc/adlparse.cpp	Fri Feb 27 13:27:09 2009 -0800
@@ -4555,7 +4555,7 @@
 
 //---------------------------ensure_start_of_line------------------------------
 // A preprocessor directive has been encountered.  Be sure it has fallen at
-// the begining of a line, or else report an error.
+// the beginning of a line, or else report an error.
 void ADLParser::ensure_start_of_line(void) {
   if (_curchar == '\n') { next_line(); return; }
   assert( _ptr >= _curline && _ptr < _curline+strlen(_curline),