Skip to content

Commit a4d2605

Browse files
authored
Merge 6cc5820 into 728420c
2 parents 728420c + 6cc5820 commit a4d2605

File tree

4 files changed

+17
-17
lines changed

4 files changed

+17
-17
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@ Delete this line and everything above, and then fill in the details below.
4646
<WinForms/WPF/OffScreen>
4747

4848
- **What steps will reproduce the problem?**
49-
- Please provide detailed information here, enough for someone else to reprodce your problem.
49+
- Please provide detailed information here, enough for someone else to reproduce your problem.
5050
- Does the problem reproduce using the [MinimalExample](https://github.com/cefsharp/CefSharp.MinimalExample)?
5151
- If code is required to reproduce your problem then please provide one of the following
5252
- Fork the [MinimalExample](https://github.com/cefsharp/CefSharp.MinimalExample) and push your changes to `GitHub` (this is the preferred option).
5353
- Use a code sharing service list `Gist` or `Pastebin`
54-
- Paste your **formatted code as part of this issue** (only do this for small amounts of code and make sure you **format the code so it's reabily**)
54+
- Paste your **formatted code as part of this issue** (only do this for small amounts of code and make sure you **format the code so it's readable**)
5555
- Please no binary attachments (zip, 7z, etc), code needs to be easily reviewed in a web browser.
5656

5757
- **What is the expected output? What do you see instead?**

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Please use one of the following to ask your questions:
1313

1414
---
1515

16-
`CefSharp` is a wrapper around the [Chromium Embedded Framework](https://bitbucket.org/chromiumembedded/cef/overview) in a lot of cases a feature must be added to `CEF` first before it can be used in `CefSharp`. `CEF` has it's own `Feature Request Forum` at https://magpcss.org/ceforum/viewforum.php?f=7
16+
`CefSharp` is a wrapper around the [Chromium Embedded Framework](https://bitbucket.org/chromiumembedded/cef/overview) in a lot of cases a feature must be added to `CEF` first before it can be used in `CefSharp`. `CEF` has its own `Feature Request Forum` at https://magpcss.org/ceforum/viewforum.php?f=7
1717

1818
---
1919

.github/pull_request_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
- e.g. I have added a new feature to the Javascript Binding implementation
66

77
**Changes:** [specify the structures changed]
8-
- e.g. I have modified the Javascript Bindign Implementation
8+
- e.g. I have modified the Javascript Binding Implementation
99
- Added support for Async binding to return Task<T>
1010
- Added new QUnit Test cases
1111

CefSharp.Core/Cef.h

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ using namespace msclr::interop;
3434
namespace CefSharp
3535
{
3636
/// <summary>
37-
/// Global CEF methods are exposed through this class. e.g. CefInitalize maps to Cef.Initialize
37+
/// Global CEF methods are exposed through this class. e.g. CefInitialize maps to Cef.Initialize
3838
/// CEF API Doc https://magpcss.org/ceforum/apidocs3/projects/(default)/(_globals).html
3939
/// This class cannot be inherited.
4040
/// </summary>
@@ -164,7 +164,7 @@ namespace CefSharp
164164
/// threads, your application will hang. See the documentation for Cef.Shutdown() for more details.
165165
/// </summary>
166166
/// <param name="cefSettings">CefSharp configuration settings.</param>
167-
/// <param name="performDependencyCheck">Check that all relevant dependencies avaliable, throws exception if any are missing</param>
167+
/// <param name="performDependencyCheck">Check that all relevant dependencies available, throws exception if any are missing</param>
168168
/// <returns>true if successful; otherwise, false.</returns>
169169
static bool Initialize(CefSettingsBase^ cefSettings, bool performDependencyCheck)
170170
{
@@ -176,11 +176,11 @@ namespace CefSharp
176176
/// <summary>
177177
/// Initializes CefSharp with user-provided settings.
178178
/// It's important to note that Initialize/Shutdown <strong>MUST</strong> be called on your main
179-
/// applicaiton thread (Typically the UI thead). If you call them on different
179+
/// application thread (typically the UI thread). If you call them on different
180180
/// threads, your application will hang. See the documentation for Cef.Shutdown() for more details.
181181
/// </summary>
182182
/// <param name="cefSettings">CefSharp configuration settings.</param>
183-
/// <param name="performDependencyCheck">Check that all relevant dependencies avaliable, throws exception if any are missing</param>
183+
/// <param name="performDependencyCheck">Check that all relevant dependencies available, throws exception if any are missing</param>
184184
/// <param name="browserProcessHandler">The handler for functionality specific to the browser process. Null if you don't wish to handle these events</param>
185185
/// <returns>true if successful; otherwise, false.</returns>
186186
static bool Initialize(CefSettingsBase^ cefSettings, bool performDependencyCheck, IBrowserProcessHandler^ browserProcessHandler)
@@ -197,14 +197,14 @@ namespace CefSharp
197197
/// threads, your application will hang. See the documentation for Cef.Shutdown() for more details.
198198
/// </summary>
199199
/// <param name="cefSettings">CefSharp configuration settings.</param>
200-
/// <param name="performDependencyCheck">Check that all relevant dependencies avaliable, throws exception if any are missing</param>
200+
/// <param name="performDependencyCheck">Check that all relevant dependencies available, throws exception if any are missing</param>
201201
/// <param name="cefApp">Implement this interface to provide handler implementations. Null if you don't wish to handle these events</param>
202202
/// <returns>true if successful; otherwise, false.</returns>
203203
static bool Initialize(CefSettingsBase^ cefSettings, bool performDependencyCheck, IApp^ cefApp)
204204
{
205205
if (IsInitialized)
206206
{
207-
// NOTE: Can only initialize Cef once, to make this explicitly clear throw exception on subsiquent attempts
207+
// NOTE: Can only initialize Cef once, to make this explicitly clear throw exception on subsequent attempts
208208
throw gcnew Exception("CEF can only be initialized once per process. This is a limitation of the underlying " +
209209
"CEF/Chromium framework. You can change many (not all) settings at runtime through RequestContext.SetPreference. " +
210210
"See https://github.com/cefsharp/CefSharp/wiki/General-Usage#request-context-browser-isolation " +
@@ -280,10 +280,10 @@ namespace CefSharp
280280
}
281281

282282
/// <summary>
283-
/// Perform a single iteration of CEF message loop processing.This function is
283+
/// Perform a single iteration of CEF message loop processing. This function is
284284
/// provided for cases where the CEF message loop must be integrated into an
285285
/// existing application message loop. Use of this function is not recommended
286-
/// for most users; use CefSettings.MultiThreadedMessageLoop if possible (the deault).
286+
/// for most users; use CefSettings.MultiThreadedMessageLoop if possible (the default).
287287
/// When using this function care must be taken to balance performance
288288
/// against excessive CPU usage. It is recommended to enable the
289289
/// CefSettings.ExternalMessagePump option when using
@@ -433,7 +433,7 @@ namespace CefSharp
433433
/// - Access the ICookieManager instance in IBrowserProcessHandler.OnContextInitialized.
434434
/// - Use the ChromiumWebBrowser BrowserInitialized (OffScreen) or IsBrowserInitializedChanged (WinForms/WPF) events.
435435
/// </summary>
436-
/// <param name="callback">If non-NULL it will be executed asnychronously on the CEF UI thread after the manager's storage has been initialized.</param>
436+
/// <param name="callback">If non-NULL it will be executed asynchronously on the CEF UI thread after the manager's storage has been initialized.</param>
437437
/// <returns>A the global cookie manager or null if the RequestContext has not yet been initialized.</returns>
438438
static ICookieManager^ GetGlobalCookieManager(ICompletionCallback^ callback)
439439
{
@@ -449,7 +449,7 @@ namespace CefSharp
449449
}
450450

451451
/// <summary>
452-
/// Called prior to calling Cef.Shutdown, this diposes of any remaning
452+
/// Called prior to calling Cef.Shutdown, this disposes of any remaining
453453
/// ChromiumWebBrowser instances. In WPF this is used from Dispatcher.ShutdownStarted
454454
/// to release the unmanaged resources held by the ChromiumWebBrowser instances.
455455
/// Generally speaking you don't need to call this yourself.
@@ -870,9 +870,9 @@ namespace CefSharp
870870
/// <summary>
871871
/// Helper method to ensure all ChromiumWebBrowser instances have been
872872
/// closed/disposed, should be called before Cef.Shutdown.
873-
/// Disposes all remaning ChromiumWebBrowser instances
874-
/// then waits for CEF to release it's remaning CefBrowser instances.
875-
/// Finally a small delay of 50ms to allow for CEF to finish it's cleanup.
873+
/// Disposes all remaining ChromiumWebBrowser instances
874+
/// then waits for CEF to release its remaining CefBrowser instances.
875+
/// Finally a small delay of 50ms to allow for CEF to finish its cleanup.
876876
/// Should only be called when MultiThreadedMessageLoop = true;
877877
/// (Hasn't been tested when when CEF integrates into main message loop).
878878
/// </summary>

0 commit comments

Comments
 (0)