From d5a3a7a599b44440292fe9ffc44d94993f6945d8 Mon Sep 17 00:00:00 2001 From: Caleb Larsen Date: Wed, 9 Feb 2022 14:42:58 -0600 Subject: [PATCH] Fix typo in comment from singple to single. --- .../com/example/appengine/pubsub/PubSubAuthenticatedPush.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appengine-java8/pubsub/src/main/java/com/example/appengine/pubsub/PubSubAuthenticatedPush.java b/appengine-java8/pubsub/src/main/java/com/example/appengine/pubsub/PubSubAuthenticatedPush.java index 644cd38e658..a9f34a82f11 100644 --- a/appengine-java8/pubsub/src/main/java/com/example/appengine/pubsub/PubSubAuthenticatedPush.java +++ b/appengine-java8/pubsub/src/main/java/com/example/appengine/pubsub/PubSubAuthenticatedPush.java @@ -74,7 +74,7 @@ public void doPost(HttpServletRequest req, HttpServletResponse resp) // Note: For high volume push requests, it would save some network overhead // if you verify the tokens offline by decoding them using Google's Public // Cert; caching already seen tokens works best when a large volume of - // messsages have prompted a singple push server to handle them, in which + // messsages have prompted a single push server to handle them, in which // case they would all share the same token for a limited time window. GoogleIdToken idToken = verifier.verify(authorization);