From 93b956e9c080c61e23fe622a71c49d9b23134154 Mon Sep 17 00:00:00 2001 From: Jon Eckenrode Date: Thu, 28 Jul 2022 14:53:44 +0000 Subject: [PATCH] Fixed typo in class description. Change-Id: I0c2afdd0a8c914854d96e27c924ee74af488e1e4 --- .../java/android/service/voice/VoiceInteractionSession.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/java/android/service/voice/VoiceInteractionSession.java b/core/java/android/service/voice/VoiceInteractionSession.java index ee32ce43821c..617c9c2e1513 100644 --- a/core/java/android/service/voice/VoiceInteractionSession.java +++ b/core/java/android/service/voice/VoiceInteractionSession.java @@ -84,12 +84,12 @@ import java.util.function.Consumer; /** * An active voice interaction session, providing a facility for the implementation - * to interact with the user in the voice interaction layer. The user interface is - * initially shown by default, and can be created be overriding {@link #onCreateContentView()} + * to interact with the user in the voice interaction layer. The user interface is + * initially shown by default, and can be created by overriding {@link #onCreateContentView()} * in which the UI can be built. * *

A voice interaction session can be self-contained, ultimately calling {@link #finish} - * when done. It can also initiate voice interactions with applications by calling + * when done. It can also initiate voice interactions with applications by calling * {@link #startVoiceActivity}

. */ public class VoiceInteractionSession implements KeyEvent.Callback, ComponentCallbacks2 {