Skip to content

Commit 0dfc4c3

Browse files
authoredDec 17, 2018
Merge pull request #949 from apjanke/style-Xcode
Style it "Xcode", not "XCode"
2 parents 9853b5d + 4581413 commit 0dfc4c3

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed
 

‎docs/scenarios/gui.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ such as: Mouse, Dual Mouse, TUIO, WiiMote, WM_TOUCH, HIDtouch, Apple's products
6464
and so on.
6565

6666
Kivy is actively being developed by a community and is free to use. It operates
67-
on all major platforms (Linux, OSX, Windows, Android).
67+
on all major platforms (Linux, OS X, Windows, Android).
6868

6969
The main resource for information is the website: http://kivy.org
7070

@@ -124,12 +124,12 @@ non-GUI applications.
124124

125125

126126
***********
127-
PySimpleGUI
127+
PySimpleGUI
128128
***********
129129

130130
`PySimpleGUI <https://pysimplegui.readthedocs.io/>`_ is a wrapper for Tkinter and Qt (others on the way). The amount of code required to implement custom GUIs is much shorter using PySimpleGUI than if the same GUI were written directly using tkinter or Qt. PySimpleGUI code can be "ported" between GUI frameworks by changing import statement.
131131

132-
.. code-block:: console
132+
.. code-block:: console
133133
134134
$ pip install pysimplegui
135135

‎docs/shipping/packaging.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,10 +168,10 @@ each distribution's format (e.g. .deb for Debian/Ubuntu, .rpm for Red
168168
Hat/Fedora, etc) is a fair amount of work. If your code is an application that
169169
you plan to distribute on other platforms, then you'll also have to create and
170170
maintain the separate config required to freeze your application for Windows
171-
and OSX. It would be much less work to simply create and maintain a single
171+
and OS X. It would be much less work to simply create and maintain a single
172172
config for one of the cross platform :ref:`freezing tools
173173
<freezing-your-code-ref>`, which will produce stand-alone executables for all
174-
distributions of Linux, as well as Windows and OSX.
174+
distributions of Linux, as well as Windows and OS X.
175175

176176
Creating a distribution package is also problematic if your code is for a
177177
version of Python that isn't currently supported by a distribution.

‎docs/starting/install/osx.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@ minimal but unofficial
3939
package.
4040

4141
.. note::
42-
If you already have XCode installed, do not install OSX-GCC-Installer.
42+
If you already have Xcode installed, do not install OSX-GCC-Installer.
4343
In combination, the software can cause issues that are difficult to
4444
diagnose.
4545

4646
.. note::
47-
If you perform a fresh install of XCode, you will also need to add the
47+
If you perform a fresh install of Xcode, you will also need to add the
4848
commandline tools by running ``xcode-select --install`` on the terminal.
4949

5050

@@ -53,7 +53,7 @@ Linux systems will notice one key component missing: a decent package manager.
5353
`Homebrew <http://brew.sh>`_ fills this void.
5454

5555
To `install Homebrew <http://brew.sh/#install>`_, open :file:`Terminal` or
56-
your favorite OSX terminal emulator and run
56+
your favorite OS X terminal emulator and run
5757

5858
.. code-block:: console
5959

‎docs/starting/install3/osx.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,26 +27,26 @@ Doing it Right
2727
Let's install a real version of Python.
2828

2929
Before installing Python, you'll need to install GCC. GCC can be obtained
30-
by downloading `XCode <http://developer.apple.com/xcode/>`_, the smaller
30+
by downloading `Xcode <http://developer.apple.com/xcode/>`_, the smaller
3131
`Command Line Tools <https://developer.apple.com/downloads/>`_ (must have an
3232
Apple account) or the even smaller `OSX-GCC-Installer <https://github.com/kennethreitz/osx-gcc-installer#readme>`_
3333
package.
3434

3535
.. note::
36-
If you already have XCode installed, do not install OSX-GCC-Installer.
36+
If you already have Xcode installed, do not install OSX-GCC-Installer.
3737
In combination, the software can cause issues that are difficult to
3838
diagnose.
3939

4040
.. note::
41-
If you perform a fresh install of XCode, you will also need to add the
41+
If you perform a fresh install of Xcode, you will also need to add the
4242
commandline tools by running ``xcode-select --install`` on the terminal.
4343

4444
While OS X comes with a large number of UNIX utilities, those familiar with
4545
Linux systems will notice one key component missing: a package manager.
4646
`Homebrew <http://brew.sh>`_ fills this void.
4747

4848
To `install Homebrew <http://brew.sh/#install>`_, open :file:`Terminal` or
49-
your favorite OSX terminal emulator and run
49+
your favorite OS X terminal emulator and run
5050

5151
.. code-block:: console
5252

‎docs/starting/install3/win.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Installing Python 3 on Windows
88
.. image:: /_static/photos/34435689480_2e6f358510_k_d.jpg
99

1010
First, follow the installation instructions for `Chocolatey <https://chocolatey.org/install>`_.
11-
It's a community system packager manager for Windows 7+. (It's very much like Homebrew on OSX.)
11+
It's a community system packager manager for Windows 7+. (It's very much like Homebrew on OS X.)
1212

1313
Once done, installing Python 3 is very simple, because Chocolatey pushes Python 3 as the default.
1414

0 commit comments

Comments
 (0)
Please sign in to comment.