Fix build by making docs match params.

Change-Id: Id5bb5161514be372b709ecbb5d56e86554d3ec64
diff --git a/core/java/android/view/View.java b/core/java/android/view/View.java
index 49b21f9..6dd87a0 100644
--- a/core/java/android/view/View.java
+++ b/core/java/android/view/View.java
@@ -18572,7 +18572,7 @@
      * must be an array of two integers. After the method returns, the array
      * contains the x and y location in that order.</p>
      *
-     * @param location an array of two integers in which to hold the coordinates
+     * @param outLocation an array of two integers in which to hold the coordinates
      */
     public void getLocationOnScreen(@Size(2) int[] outLocation) {
         getLocationInWindow(outLocation);
@@ -18589,7 +18589,7 @@
      * must be an array of two integers. After the method returns, the array
      * contains the x and y location in that order.</p>
      *
-     * @param outWindowSpace an array of two integers in which to hold the coordinates
+     * @param outLocation an array of two integers in which to hold the coordinates
      */
     public void getLocationInWindow(@Size(2) int[] outLocation) {
         if (outLocation == null || outLocation.length < 2) {