diff --git a/docs/GETTING-STARTED.md b/docs/GETTING-STARTED.md index 54dead0..7817fd3 100644 --- a/docs/GETTING-STARTED.md +++ b/docs/GETTING-STARTED.md @@ -63,7 +63,7 @@ Cross compilation to the `*-pc-windows-gnu` target works. Just make sure that Mi find the headers of the win32 API. Moreover, you need to ship the executable together with the WebView2Loader.dll file. -It can be obtained on non-Windows systems, by installing nuget, and obtaining it with: +It can be obtained on non-Windows systems, by installing nuget, and downloading it with: `nuget install Microsoft.Web.WebView2` diff --git a/src/lib.rs b/src/lib.rs index 38b6cf8..a8c4e2d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -13,8 +13,10 @@ //! //! For more detailed example code, see [this example code](https://github.com/bamidev/browser-window/tree/master/examples). //! +//! Or, for a very simple example of a browser frame, [look at this](https://github.com/bamidev/stonenet/blob/dev/desktop/src/main.rs). +//! //! # Thread safety -//! To use the threadsafe version of _Browser Window_, enable feature +//! To use the threadsafe version of _BrowserWindow_, enable feature //! `threadsafe`. mod core;