aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorphunkyfish <phunkyfish@gmail.com>2020-03-09 15:14:10 +0000
committerGitHub <noreply@github.com>2020-03-09 15:14:10 +0000
commit982fdf287f4530249882ad6e24558abb21911284 (patch)
tree7f7e08c78699f977e01d17cd0d58f8828579281e /docs
parenta976d33ea379ab8cefe65c5b2fb16ddda5983cd4 (diff)
parentd5206bfcfae45ada95109a3818f620be308edea7 (diff)
Merge pull request #16599 from bugwelle/spelling
[docs] Fix minor typos
Diffstat (limited to 'docs')
-rw-r--r--docs/CODE_GUIDELINES.md4
-rw-r--r--docs/HOWTO.CleanUpLogic.md2
-rw-r--r--docs/README.tvOS.md4
3 files changed, 5 insertions, 5 deletions
diff --git a/docs/CODE_GUIDELINES.md b/docs/CODE_GUIDELINES.md
index 7298d75ccc..0064f121b8 100644
--- a/docs/CODE_GUIDELINES.md
+++ b/docs/CODE_GUIDELINES.md
@@ -504,7 +504,7 @@ void MyDummyClass::DoSomething();
Use CamelCase. Type prefixing (Systems Hungarian notation) is discouraged.
#### Member variables
-Prefix nonstatic member variables with `m_`. Prefix static member variables with `ms_`.
+Prefix non-static member variables with `m_`. Prefix static member variables with `ms_`.
```cpp
int m_variableA;
static int ms_variableB;
@@ -651,7 +651,7 @@ class Foo
### 11.5. Destructors in interfaces
-A class with any virtual functions should have a destructor that is either public and virtual or else protected and nonvirtual (cf. [ISO C++ guidelines](http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rc-dtor-virtual)).
+A class with any virtual functions should have a destructor that is either public and virtual or else protected and non-virtual (cf. [ISO C++ guidelines](http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rc-dtor-virtual)).
### 11.6. Constructor Initialzation Lists
diff --git a/docs/HOWTO.CleanUpLogic.md b/docs/HOWTO.CleanUpLogic.md
index ed64e4dd57..ff9279fcbc 100644
--- a/docs/HOWTO.CleanUpLogic.md
+++ b/docs/HOWTO.CleanUpLogic.md
@@ -35,7 +35,7 @@ Ternary logic can also be unwieldy. For example, the previous logic in the secon
X = (A && !B) ? Y : Z;
```
-This statement isn't as offensive, but wouldn't it be more readable and maintanable by using a few more lines?
+This statement isn't as offensive, but wouldn't it be more readable and maintainable by using a few more lines?
**[back to top](#table-of-contents)**
diff --git a/docs/README.tvOS.md b/docs/README.tvOS.md
index e1325a7e2f..2e938cf40d 100644
--- a/docs/README.tvOS.md
+++ b/docs/README.tvOS.md
@@ -247,9 +247,9 @@ Note that using a free developer account the signing will need to be reapplied e
1. Open the Xcode project in Xcode as above (requires Xcode 7 or later)
2. Select Xcode->Preferences and select Accounts
- * Hit the + sign to add an Apple ID accoumt and Login.
+ * Hit the + sign to add an Apple ID account and Login.
2. Next select the kodi build target
- 3. Under the `General` tab, enter a unique bundle identifer and check the box to `Automatically Manage Signing`.
+ 3. Under the `General` tab, enter a unique bundle identifier and check the box to `Automatically Manage Signing`.
4. Select your team under `Automatically Manage Signing`.
## An important note on Code Signing