Skip to content

Commit c09328b

Browse files
committed
Core - Fix IAudioHandler xml doc typo
1 parent 52b0235 commit c09328b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

CefSharp/Handler/AudioHandler.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ void IAudioHandler.OnAudioStreamStarted(IWebBrowser chromiumWebBrowser,
5555

5656
/// <summary>
5757
/// Called on a browser audio capture thread when the browser starts streaming audio.
58-
/// OnAudioSteamStopped will always be called after OnAudioStreamStarted; both methods may be called multiple
58+
/// OnAudioStreamStopped will always be called after OnAudioStreamStarted; both methods may be called multiple
5959
/// times for the same browser.
6060
/// </summary>
6161
/// <param name="chromiumWebBrowser">the ChromiumWebBrowser control</param>
@@ -99,7 +99,7 @@ void IAudioHandler.OnAudioStreamStopped(IWebBrowser chromiumWebBrowser, IBrowser
9999
}
100100

101101
/// <summary>
102-
/// Called on the CEF UI thread when the stream has stopped. OnAudioSteamStopped will always be called after <see cref="OnAudioStreamStarted"/>;
102+
/// Called on the CEF UI thread when the stream has stopped. OnAudioStreamStopped will always be called after <see cref="OnAudioStreamStarted"/>;
103103
/// both methods may be called multiple times for the same stream.
104104
/// </summary>
105105
/// <param name="chromiumWebBrowser">the ChromiumWebBrowser control</param>

CefSharp/Handler/IAudioHandler.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public interface IAudioHandler : IDisposable
2626

2727
/// <summary>
2828
/// Called on a browser audio capture thread when the browser starts streaming audio.
29-
/// OnAudioSteamStopped will always be called after OnAudioStreamStarted; both methods may be called multiple
29+
/// OnAudioStreamStopped will always be called after OnAudioStreamStarted; both methods may be called multiple
3030
/// times for the same browser.
3131
/// </summary>
3232
/// <param name="chromiumWebBrowser">the ChromiumWebBrowser control</param>
@@ -52,7 +52,7 @@ void OnAudioStreamStarted(IWebBrowser chromiumWebBrowser,
5252
void OnAudioStreamPacket(IWebBrowser chromiumWebBrowser, IBrowser browser, IntPtr data, int noOfFrames, long pts);
5353

5454
/// <summary>
55-
/// Called on the CEF UI thread when the stream has stopped. OnAudioSteamStopped will always be called after <see cref="OnAudioStreamStarted"/>;
55+
/// Called on the CEF UI thread when the stream has stopped. OnAudioStreamStopped will always be called after <see cref="OnAudioStreamStarted"/>;
5656
/// both methods may be called multiple times for the same stream.
5757
/// </summary>
5858
/// <param name="chromiumWebBrowser">the ChromiumWebBrowser control</param>

0 commit comments

Comments
 (0)