From fc53e584d3d6ae106752cce334f143a68eb161bd Mon Sep 17 00:00:00 2001 From: Fabrice Di Meglio Date: Thu, 25 Oct 2012 11:45:04 -0700 Subject: [PATCH] Fix typos in LinearLayout comments - woow those were very old ones! Change-Id: I72bf71d5c5aa14f32401aed04462d562672016f8 --- core/java/android/widget/LinearLayout.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/java/android/widget/LinearLayout.java b/core/java/android/widget/LinearLayout.java index 83c15bbac4524..5e367aae6cf9f 100644 --- a/core/java/android/widget/LinearLayout.java +++ b/core/java/android/widget/LinearLayout.java @@ -1346,7 +1346,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) {