comparison src/share/vm/gc_implementation/shared/gcUtil.hpp @ 14309:63a4eb8bcd23

8025856: Fix typos in the GC code Summary: Fix about 440 typos in comments in the VM code Reviewed-by: mgerdin, tschatzl, coleenp, kmo, jcoomes
author jwilhelm
date Thu, 23 Jan 2014 14:47:23 +0100
parents 9758d9f36299
children 4ca6dc0799b6
comparison
equal deleted inserted replaced
14308:870aedf4ba4f 14309:63a4eb8bcd23
208 LinearLeastSquareFit(unsigned weight); 208 LinearLeastSquareFit(unsigned weight);
209 void update(double x, double y); 209 void update(double x, double y);
210 double y(double x); 210 double y(double x);
211 double slope() { return _slope; } 211 double slope() { return _slope; }
212 // Methods to decide if a change in the dependent variable will 212 // Methods to decide if a change in the dependent variable will
213 // achive a desired goal. Note that these methods are not 213 // achieve a desired goal. Note that these methods are not
214 // complementary and both are needed. 214 // complementary and both are needed.
215 bool decrement_will_decrease(); 215 bool decrement_will_decrease();
216 bool increment_will_decrease(); 216 bool increment_will_decrease();
217 }; 217 };
218 218