From 6429c006f4491594cd47567bc68fc3c2a7afe89b Mon Sep 17 00:00:00 2001 From: Venny Date: Sun, 19 Jul 2020 22:56:15 +0200 Subject: [PATCH] Fix grammar --- .../java/org/microg/gms/common/ForegroundServiceContext.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/play-services-base-core/src/main/java/org/microg/gms/common/ForegroundServiceContext.java b/play-services-base-core/src/main/java/org/microg/gms/common/ForegroundServiceContext.java index 539f4ed4..9fd66d7d 100644 --- a/play-services-base-core/src/main/java/org/microg/gms/common/ForegroundServiceContext.java +++ b/play-services-base-core/src/main/java/org/microg/gms/common/ForegroundServiceContext.java @@ -75,7 +75,7 @@ public class ForegroundServiceContext extends ContextWrapper { return new Notification.Builder(context, channel.getId()) .setOngoing(true) .setContentTitle("Running in background") - .setContentText("This notification ensures, that microG does not get killed.") + .setContentText("This notification ensures that microG does not get killed.") .setSmallIcon(R.drawable.ic_foreground_notification) .setColor(0xFFFFFF) .build();