diff options
-rw-r--r-- | docs/CODE_GUIDELINES.md | 4 | ||||
-rw-r--r-- | docs/HOWTO.CleanUpLogic.md | 2 | ||||
-rw-r--r-- | docs/README.tvOS.md | 4 |
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 |