From a417ca8c114de82a23e8935a6956e6416e616a77 Mon Sep 17 00:00:00 2001 From: Kweku Adams Date: Tue, 4 Feb 2020 17:51:35 -0800 Subject: [PATCH] Fix typo. Bug: N/A Test: N/A Change-Id: Ibb2536599cedecf667b7c213a81b8959f0fcd254 --- apex/jobscheduler/framework/java/android/app/job/JobInfo.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apex/jobscheduler/framework/java/android/app/job/JobInfo.java b/apex/jobscheduler/framework/java/android/app/job/JobInfo.java index 0bb07caf0b00f..088cadba89ab8 100644 --- a/apex/jobscheduler/framework/java/android/app/job/JobInfo.java +++ b/apex/jobscheduler/framework/java/android/app/job/JobInfo.java @@ -1287,7 +1287,7 @@ public class JobInfo implements Parcelable { * {@link #setPeriodic(long)} or {@link #setPersisted(boolean)}. To continually monitor * for content changes, you need to schedule a new JobInfo observing the same URIs * before you finish execution of the JobService handling the most recent changes. - * Following this pattern will ensure you do not lost any content changes: while your + * Following this pattern will ensure you do not lose any content changes: while your * job is running, the system will continue monitoring for content changes, and propagate * any it sees over to the next job you schedule.

*