Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f07a4605 authored by kopriva's avatar kopriva
Browse files

docs: fixing several minor documentation bugs

Test: make ds-docs

Bug: 36949243
Bug: 116169695
Bug: 37001248
Bug: 37044885
Bug: 37053166

Change-Id: I844a8978518cd7214bf9d068d602902dfa7e8246
Exempt-From-Owner-Approval: Docs-only change
parent 562f5485
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -237,7 +237,7 @@ public class DatePickerDialog extends AlertDialog implements OnClickListener,
         * @param year the selected year
         * @param month the selected month (0-11 for compatibility with
         *              {@link Calendar#MONTH})
         * @param dayOfMonth th selected day of the month (1-31, depending on
         * @param dayOfMonth the selected day of the month (1-31, depending on
         *                   month)
         */
        void onDateSet(DatePicker view, int year, int month, int dayOfMonth);
+2 −2
Original line number Diff line number Diff line
<HTML>
<BODY>
<p>Contains classes for accessing application resources,
such as raw asset files, colors, drawables, media or other other files
such as raw asset files, colors, drawables, media, or other files
in the package, plus important device configuration details
(orientation, input types, etc.) that affect how the application may behave.</p>

+1 −1
Original line number Diff line number Diff line
@@ -290,7 +290,7 @@ public class CloseableLock implements AutoCloseable {
    /**
     * Release a single lock that was acquired.
     *
     * <p>Any other other that is blocked and trying to acquire a lock will get a chance
     * <p>Any other thread that is blocked and trying to acquire a lock will get a chance
     * to acquire the lock.</p>
     *
     * @throws IllegalStateException if no locks were acquired, or if the lock was already closed
+2 −2
Original line number Diff line number Diff line
@@ -41,8 +41,8 @@ public class DecelerateInterpolator extends BaseInterpolator implements NativeIn
     * Constructor
     *
     * @param factor Degree to which the animation should be eased. Setting factor to 1.0f produces
     *        an upside-down y=x^2 parabola. Increasing factor above 1.0f makes exaggerates the
     *        ease-out effect (i.e., it starts even faster and ends evens slower)
     *        an upside-down y=x^2 parabola. Increasing factor above 1.0f exaggerates the
     *        ease-out effect (i.e., it starts even faster and ends evens slower).
     */
    public DecelerateInterpolator(float factor) {
        mFactor = factor;
+1 −1
Original line number Diff line number Diff line
@@ -363,7 +363,7 @@ public class Address implements Parcelable {
     * or null if it is unknown.
     *
     * @throws IllegalStateException if this Address has not been assigned
     * a latitude.
     * a phone number.
     */
    public String getPhone() {
        return mPhone;
Loading