Skip to content

Commit

Permalink
typo(fix): corrects common typos in project README files
Browse files Browse the repository at this point in the history
  • Loading branch information
plan-do-break-fix authored and nyalldawson committed Apr 26, 2021
1 parent e3289f3 commit f93b738
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion external/o2/README.md
Expand Up @@ -180,7 +180,7 @@ That's it. Tweets using the O2 library!

### Storing OAuth Tokens

O2 provides simple storage classes for writing OAuth tokens in a peristent location. Currently, a QSettings based backing store **O2SettingsStore** is provided in O2. O2SettingsStore keeps all token values in an encrypted form. You have to specify the encryption key to use while constructing the object:
O2 provides simple storage classes for writing OAuth tokens in a persistent location. Currently, a QSettings based backing store **O2SettingsStore** is provided in O2. O2SettingsStore keeps all token values in an encrypted form. You have to specify the encryption key to use while constructing the object:

O0SettingsStore settings = new O0SettingsStore("myencryptionkey");
// Set the store before starting OAuth, i.e before calling link()
Expand Down
4 changes: 2 additions & 2 deletions external/wintoast/README.md
Expand Up @@ -148,8 +148,8 @@ A common example of usage is to check while initializing the library or showing

```cpp
WinToast::WinToastError error;
const bool succedded = WinToast::instance()->initialize(&error);
if (!succedded) {
const bool succeeded = WinToast::instance()->initialize(&error);
if (!succeeded) {
std::wcout << L"Error, could not initialize the lib. Error number: "
<< error << std::endl;
}
Expand Down

0 comments on commit f93b738

Please sign in to comment.