Skip to content

Commit cd9be6c

Browse files
author
Alex Cooper (ANALOG)
committed
PR Feedback
1 parent 3c3b743 commit cd9be6c

File tree

2 files changed

+5
-13
lines changed

2 files changed

+5
-13
lines changed

Assets/MixedRealityToolkit/_Core/Definitions/InputSystem/MixedRealityInputSystemProfile.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,4 +143,4 @@ public MixedRealityControllerVisualizationProfile ControllerVisualizationProfile
143143
private set { controllerVisualizationProfile = value; }
144144
}
145145
}
146-
}
146+
}

Assets/MixedRealityToolkit/_Core/Devices/VoiceInput/WindowsSpeechInputDeviceManager.cs

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,7 @@ public WindowsSpeechInputDeviceManager(string name, uint priority) : base(name,
3232

3333
private KeywordRecognizer keywordRecognizer;
3434

35-
/// <summary>
36-
/// Query whether or not the speech system is active
37-
/// </summary>
35+
/// <inheritdoc />
3836
public bool IsRecognitionActive
3937
{
4038
get { return keywordRecognizer != null && keywordRecognizer.IsRunning; }
@@ -92,10 +90,7 @@ public override void Disable()
9290
}
9391
}
9492

95-
/// <summary>
96-
/// Make sure the keyword recognizer is off, then start it.
97-
/// Otherwise, leave it alone because it's already in the desired state.
98-
/// </summary>
93+
/// <inheritdoc />
9994
public void StartRecognition()
10095
{
10196
if (keywordRecognizer != null && !keywordRecognizer.IsRunning)
@@ -104,10 +99,7 @@ public void StartRecognition()
10499
}
105100
}
106101

107-
/// <summary>
108-
/// Make sure the keyword recognizer is on, then stop it.
109-
/// Otherwise, leave it alone because it's already in the desired state.
110-
/// </summary>
102+
/// <inheritdoc />
111103
public void StopRecognition()
112104
{
113105
if (keywordRecognizer != null && keywordRecognizer.IsRunning)
@@ -134,4 +126,4 @@ private void OnPhraseRecognized(ConfidenceLevel confidence, TimeSpan phraseDurat
134126
}
135127
}
136128
#endif // UNITY_STANDALONE_WIN || UNITY_WSA || UNITY_EDITOR_WIN
137-
}
129+
}

0 commit comments

Comments
 (0)