diff src/share/vm/opto/block.hpp @ 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 ec59443af135
children fbc12e71c476
line wrap: on
line diff
--- a/src/share/vm/opto/block.hpp	Fri Feb 27 08:34:19 2009 -0800
+++ b/src/share/vm/opto/block.hpp	Fri Feb 27 13:27:09 2009 -0800
@@ -609,7 +609,7 @@
   Block * next(Block *b) const { return _next_list[b->_pre_order]; }
   void set_next(Block *b, Block *n) const { _next_list[b->_pre_order] = n; }
 
-  // Return the block that preceeds "b" in the trace.
+  // Return the block that precedes "b" in the trace.
   Block * prev(Block *b) const { return _prev_list[b->_pre_order]; }
   void set_prev(Block *b, Block *p) const { _prev_list[b->_pre_order] = p; }