Skip to content

Commit facecb1

Browse files
authored
Fix typo. (#3282)
1 parent e213f37 commit facecb1

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

CefSharp.OffScreen/ChromiumWebBrowser.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,23 +125,23 @@ public bool IsBrowserInitialized
125125
/// It's important to note this event is fired on a CEF UI thread, which by default is not the same as your application UI
126126
/// thread. It is unwise to block on this thread for any length of time as your browser will become unresponsive and/or hang..
127127
/// To access UI elements you'll need to Invoke/Dispatch onto the UI Thread.
128-
/// (The exception to this is when your running with settings.MultiThreadedMessageLoop = false, then they'll be the same thread).
128+
/// (The exception to this is when you're running with settings.MultiThreadedMessageLoop = false, then they'll be the same thread).
129129
/// </summary>
130130
public event EventHandler BrowserInitialized;
131131
/// <summary>
132132
/// Occurs when the browser address changed.
133133
/// It's important to note this event is fired on a CEF UI thread, which by default is not the same as your application UI
134134
/// thread. It is unwise to block on this thread for any length of time as your browser will become unresponsive and/or hang..
135135
/// To access UI elements you'll need to Invoke/Dispatch onto the UI Thread.
136-
/// (The exception to this is when your running with settings.MultiThreadedMessageLoop = false, then they'll be the same thread).
136+
/// (The exception to this is when you're running with settings.MultiThreadedMessageLoop = false, then they'll be the same thread).
137137
/// </summary>
138138
public event EventHandler<AddressChangedEventArgs> AddressChanged;
139139
/// <summary>
140140
/// Occurs when [title changed].
141141
/// It's important to note this event is fired on a CEF UI thread, which by default is not the same as your application UI
142142
/// thread. It is unwise to block on this thread for any length of time as your browser will become unresponsive and/or hang..
143143
/// To access UI elements you'll need to Invoke/Dispatch onto the UI Thread.
144-
/// (The exception to this is when your running with settings.MultiThreadedMessageLoop = false, then they'll be the same thread).
144+
/// (The exception to this is when you're running with settings.MultiThreadedMessageLoop = false, then they'll be the same thread).
145145
/// </summary>
146146
public event EventHandler<TitleChangedEventArgs> TitleChanged;
147147

CefSharp/IWebBrowser.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public interface IWebBrowser : IDisposable
1818
/// It's important to note this event is fired on a CEF UI thread, which by default is not the same as your application UI
1919
/// thread. It is unwise to block on this thread for any length of time as your browser will become unresponsive and/or hang..
2020
/// To access UI elements you'll need to Invoke/Dispatch onto the UI Thread.
21-
/// (The exception to this is when your running with settings.MultiThreadedMessageLoop = false, then they'll be the same thread).
21+
/// (The exception to this is when you're running with settings.MultiThreadedMessageLoop = false, then they'll be the same thread).
2222
/// </summary>
2323
event EventHandler<ConsoleMessageEventArgs> ConsoleMessage;
2424

@@ -27,7 +27,7 @@ public interface IWebBrowser : IDisposable
2727
/// It's important to note this event is fired on a CEF UI thread, which by default is not the same as your application UI
2828
/// thread. It is unwise to block on this thread for any length of time as your browser will become unresponsive and/or hang.
2929
/// To access UI elements you'll need to Invoke/Dispatch onto the UI Thread.
30-
/// (The exception to this is when your running with settings.MultiThreadedMessageLoop = false, then they'll be the same thread).
30+
/// (The exception to this is when you're running with settings.MultiThreadedMessageLoop = false, then they'll be the same thread).
3131
/// </summary>
3232
event EventHandler<StatusMessageEventArgs> StatusMessage;
3333

CefSharp/Internals/Partial/ChromiumWebBrowser.Partial.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,15 +179,15 @@ public partial class ChromiumWebBrowser
179179
/// It's important to note this event is fired on a CEF UI thread, which by default is not the same as your application UI
180180
/// thread. It is unwise to block on this thread for any length of time as your browser will become unresponsive and/or hang..
181181
/// To access UI elements you'll need to Invoke/Dispatch onto the UI Thread.
182-
/// (The exception to this is when your running with settings.MultiThreadedMessageLoop = false, then they'll be the same thread).
182+
/// (The exception to this is when you're running with settings.MultiThreadedMessageLoop = false, then they'll be the same thread).
183183
/// </summary>
184184
public event EventHandler<ConsoleMessageEventArgs> ConsoleMessage;
185185
/// <summary>
186186
/// Event handler for changes to the status message.
187187
/// It's important to note this event is fired on a CEF UI thread, which by default is not the same as your application UI
188188
/// thread. It is unwise to block on this thread for any length of time as your browser will become unresponsive and/or hang.
189189
/// To access UI elements you'll need to Invoke/Dispatch onto the UI Thread.
190-
/// (The exception to this is when your running with settings.MultiThreadedMessageLoop = false, then they'll be the same thread).
190+
/// (The exception to this is when you're running with settings.MultiThreadedMessageLoop = false, then they'll be the same thread).
191191
/// </summary>
192192
public event EventHandler<StatusMessageEventArgs> StatusMessage;
193193
/// <summary>

0 commit comments

Comments
 (0)