Skip to content

Commit 1927e2e

Browse files
committed
clean up some typos in interlinked pages
1 parent 4a82e6c commit 1927e2e

File tree

8 files changed

+9
-11
lines changed

8 files changed

+9
-11
lines changed

content/pages/02-development-environments/01-text-editors-ides.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ wants that kind of functionality.
7171
Editors built from the foundation up are not necessarily better than
7272
general-purpose text editors and IDEs like [Vim](/vim.html) and
7373
[Emacs](/emacs.html) but they are typically much easier to configure for
74-
gathering [code metrics](/code.metrics.html), running
74+
gathering [code metrics](/code-metrics.html), running
7575
[unit tests](/unit-testing.html) and [debugging](/debugging.html).
7676

7777
* [PyCharm](https://www.jetbrains.com/pycharm/) is a Python-specific IDE

content/pages/02-development-environments/18-source-control.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ today's Python development world. The two primary choices are:
7777
* [Mercurial](/mercurial.html) is similar to Git, also a free
7878
and open source distributed version control system.
7979

80-
* [Subversion](/apache-subversion.html) is a centralized system where
80+
* [Subversion](https://subversion.apache.org/) is a centralized system where
8181
developers must check files in and out of the hosted repository to minimize
8282
merge conflicts.
8383

@@ -186,7 +186,7 @@ on how to structure your repositories.
186186
[Git](/git.html) is the most widely-used source control system currently
187187
in use. Its distributed design eliminates the need to check files in
188188
and out of a centralized repository, which is a problem when using
189-
[Subversion](/apache-subversion.html) without a network connection. There is
189+
[Subversion](https://subversion.apache.org/) without a network connection. There is
190190
[a full page on Git](/git.html) with further details and resources.
191191

192192

content/pages/02-development-environments/19-git.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ frequently used as the version control system for Python projects.
2121
## Why is Git widely-used by developers?
2222
Git is a *distributed* version control system (DVCS) compared to the
2323
centralized models previously provided by
24-
[Subversion](/apache-subversion.html) and [CVS](https://www.nongnu.org/cvs/).
24+
[Subversion](https://subversion.apache.org/) and [CVS](https://www.nongnu.org/cvs/).
2525
Files would need to be "checked out" over the network by a single person at
2626
a time while she was working. The network transfer speed as well as the
2727
blocking check out model became a significant bottleneck, especially for

content/pages/05-deployment/15-macos.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ meta: macOS is an operating system within the Unix family tree that is developed
88

99

1010
# macOS
11-
macOS is an [operating system](/operating-system.html)
11+
macOS is an [operating system](/operating-systems.html)
1212
within the Unix family tree that is developed by Apple and is often
1313
used for [developing Python applications](/learning-programming.html).
1414

content/pages/05-deployment/16-windows.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ meta: Windows is an operating system built by Microsoft that is often used for d
99

1010
# Windows
1111
[Windows](https://www.microsoft.com/windows) is a closed-source, proprietary
12-
[operating system](/operating-system.html) created by Microsoft that
12+
[operating system](/operating-systems.html) created by Microsoft that
1313
is often used to [develop Python applications](/learning-programming.html).
1414

1515
<a href="https://www.microsoft.com/windows" style="border: none"><img src="/img/logos/windows.png" width="100%" alt="Microsoft Windows 10 logo." class="shot" style="margin: 8px 0 8px 0"></a>

content/pages/meta/00-change-log.markdown

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -350,9 +350,8 @@ on GitHub.
350350
to track what's being worked on.
351351
* Updated [future directions](/future-directions.html) with more context on
352352
page maturity.
353-
* New starter pages for [Companies Using Python](/companies-using-python.html),
354-
[Sublime Text](/sublime-text.html),
355-
[Apache Subversion](/apache-subversion.html)
353+
* New starter pages for [Companies Using Python](/companies-using-python.html)
354+
and [Sublime Text](/sublime-text.html).
356355
* New [Python 2 or 3?](/python-2-or-3.html) resources.
357356
* Fixed diagram mistake on [Peewee](/peewee.html) ORM page that was
358357
referencing SQLAlchemy instead of Peewee.

content/pages/meta/04-page-statuses.markdown

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ kept up to date with accurate descriptions and resources.
6767
|[Source Control](/source-control.html) | intermediate |
6868
|[Git](/git.html) | starter |
6969
|[Mercurial](/mercurial.html) | starter |
70-
|[Apache Subversion](/apache-subversion.html) | starter |
7170

7271

7372
## Chapter 3: Data

transform_book.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"(#introduction)",
1212
"(/learning-programming.html)":
1313
"(#learning-programming)",
14-
"(/python-programming-language)":
14+
"(/python-programming-language.html)":
1515
"(#python-programming-language)",
1616
"(/why-use-python.html)":
1717
"(#why-use-python)",

0 commit comments

Comments
 (0)