am 1e761ded: Merge "Fix typos in LinearLayout comments" into jb-mr1-dev

* commit '1e761ded55695a9d76a6f00ee9504625581e8d3a':
  Fix typos in LinearLayout comments
This commit is contained in:
Fabrice Di Meglio
2012-11-30 17:17:03 -08:00
committed by Android Git Automerger

View File

@ -1340,7 +1340,7 @@ public class LinearLayout extends ViewGroup {
private void forceUniformHeight(int count, int widthMeasureSpec) {
// Pretend that the linear layout has an exact size. This is the measured height of
// ourselves. The measured height should be the max height of the children, changed
// to accomodate the heightMesureSpec from the parent
// to accommodate the heightMeasureSpec from the parent
int uniformMeasureSpec = MeasureSpec.makeMeasureSpec(getMeasuredHeight(),
MeasureSpec.EXACTLY);
for (int i = 0; i < count; ++i) {