fix typos

pull/2737/head
RayBB 4 months ago committed by Alex Baker
parent 41aa1ca65f
commit b97eade59c

@ -135,7 +135,7 @@ class GCalHelper @Inject constructor(
val dueDate = task.dueDate
val tzCorrectedDueDate = dueDate + TimeZone.getDefault().getOffset(dueDate)
val tzCorrectedDueDateNow = DateUtilities.now() + TimeZone.getDefault().getOffset(DateUtilities.now())
// FIXME: doesnt respect timezones, see story 17443653
// FIXME: doesn't respect timezones, see story 17443653
if (task.hasDueDate()) {
if (task.hasDueTime()) {
var estimatedTime = task.estimatedSeconds * 1000.toLong()

@ -32,7 +32,7 @@ public class VoiceOutputAssistant implements OnInitListener {
public void initTTS() {
if (mTts == null) {
mTts = new TextToSpeech(context, this);
Timber.d("Inititalized %s", mTts);
Timber.d("Initialized %s", mTts);
}
}

@ -206,7 +206,7 @@ public final class ShortcutBadger {
}
}
// Initialize Badger if a launcher is availalble (eg. set as default on the device)
// Initialize Badger if a launcher is available (eg. set as default on the device)
// Returns true if a launcher is available, in this case, the Badger will be set and sShortcutBadger will be non null.
private static boolean initBadger(Context context) {
Intent launchIntent = context.getPackageManager().getLaunchIntentForPackage(context.getPackageName());

Loading…
Cancel
Save