Skip to content

Commit e21dfeb

Browse files
committed
Typo in URL.
1 parent 7f83091 commit e21dfeb

12 files changed

+37
-37
lines changed

‎doc/source/0_preface.rst

+6-6
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@ How to use this book
9797
you need to get your hands dirty writing code and debugging your mistakes.
9898
To help with this there is a book website at:
9999

100-
`https://object-oriented-programming.github.io
101-
<https://object-oriented-programming.github.io>`__
100+
`https://object-oriented-python.github.io
101+
<https://object-oriented-python.github.io>`__
102102

103103
As well as a web version of the full text of the book, the website contains
104104
videos and the code needed to do the programming exercises at the end of
@@ -126,8 +126,8 @@ it's better to watch the video *after* reading the relevant section.
126126
The videos are marked in the text by a blue box at the right hand side,
127127
containing the video number. This corresponds to the list of links at:
128128

129-
`https://object-oriented-programming.github.io/edition1/videos.html
130-
<https://object-oriented-programming.github.io/edition1/videos.html>`__
129+
`https://object-oriented-python.github.io/edition1/videos.html
130+
<https://object-oriented-python.github.io/edition1/videos.html>`__
131131

132132
The exercises
133133
.............
@@ -141,8 +141,8 @@ correct responses to a range of inputs. Tests like this provide immediate
141141
feedback and enable you to know how you are doing. Links to the skeleton code
142142
for each chapter are provided at:
143143

144-
`https://object-oriented-programming.github.io/edition1/exercises.html
145-
<https://object-oriented-programming.github.io/edition1/exercises.html>`__
144+
`https://object-oriented-python.github.io/edition1/exercises.html
145+
<https://object-oriented-python.github.io/edition1/exercises.html>`__
146146

147147

148148
Conventions employed

‎doc/source/10_further_object-oriented_features.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,7 @@ Exercises
570570
.. only:: not book
571571

572572
Using the information on the `book website
573-
<https://object-oriented-programming.github.io/edition1/exercises.html>`__
573+
<https://object-oriented-python.github.io/edition1/exercises.html>`__
574574
obtain the skeleton code for these exercises.
575575

576576
.. only:: book
@@ -613,5 +613,5 @@ Exercises
613613
in Python, so diving in and reading the source code is often an option if
614614
you really want to know how some part of the language works.
615615
616-
.. [#exercise_page] `https://object-oriented-programming.github.io/edition1/exercises.html
617-
<https://object-oriented-programming.github.io/edition1/exercises.html>`__
616+
.. [#exercise_page] `https://object-oriented-python.github.io/edition1/exercises.html
617+
<https://object-oriented-python.github.io/edition1/exercises.html>`__

‎doc/source/1_introduction.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,8 @@ are:
8787
access. Rather than provide the install information here, this information
8888
is instead provided on the book website:
8989

90-
`https://object-oriented-programming.github.io/installation.html
91-
<https://object-oriented-programming.github.io/installation.html>`__
90+
`https://object-oriented-python.github.io/installation.html
91+
<https://object-oriented-python.github.io/installation.html>`__
9292

9393
.. only:: latex and not book
9494

@@ -97,7 +97,7 @@ are:
9797
you are essentially by definition seated at a computer with internet
9898
access. Rather than provide the install information here, this information
9999
is instead provided on `the book website:
100-
<https://object-oriented-programming.github.io/installation.html>`__.
100+
<https://object-oriented-python.github.io/installation.html>`__.
101101

102102
.. only:: html
103103

‎doc/source/2_programs_in_files.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -987,7 +987,7 @@ already familiar with Git and GitHub then you will also need to work through
987987
.. only:: not book
988988

989989
Using the information on the `book website
990-
<https://object-oriented-programming.github.io/edition1/exercises.html>`__
990+
<https://object-oriented-python.github.io/edition1/exercises.html>`__
991991
create your first exercise repository for this module and clone it
992992
into your working folder. The exercise repository just contains a
993993
:file:`README` and some tests. Your job in the following exercises will be
@@ -1074,5 +1074,5 @@ already familiar with Git and GitHub then you will also need to work through
10741074
.. [#book_repo] `https://github.com/object-oriented-python/object-oriented-programming
10751075
<https://github.com/object-oriented-python/object-oriented-programming>`__
10761076
1077-
.. [#exercise_page] `https://object-oriented-programming.github.io/edition1/exercises.html
1078-
<https://object-oriented-programming.github.io/edition1/exercises.html>`__
1077+
.. [#exercise_page] `https://object-oriented-python.github.io/edition1/exercises.html
1078+
<https://object-oriented-python.github.io/edition1/exercises.html>`__

‎doc/source/3_objects.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -888,7 +888,7 @@ Exercises
888888
.. only:: not book
889889

890890
Using the information on the `book website
891-
<https://object-oriented-programming.github.io/edition1/exercises.html>`__
891+
<https://object-oriented-python.github.io/edition1/exercises.html>`__
892892
obtain the skeleton code for these exercises. The skeleton code contains a
893893
:mod:`polynomial` package with a version of the :class:`Polynomial` class.
894894

@@ -959,5 +959,5 @@ Exercises
959959

960960
.. rubric:: Footnotes
961961

962-
.. [#exercise_page] `https://object-oriented-programming.github.io/edition1/exercises.html
963-
<https://object-oriented-programming.github.io/edition1/exercises.html>`__
962+
.. [#exercise_page] `https://object-oriented-python.github.io/edition1/exercises.html
963+
<https://object-oriented-python.github.io/edition1/exercises.html>`__

‎doc/source/4_style.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -1247,7 +1247,7 @@ Exercises
12471247

12481248
The skeleton code on GitHub for this chapter's exercises contains a package
12491249
:mod:`life` which implements Conway's Game of Life. Using the information on the `book website
1250-
<https://object-oriented-programming.github.io/edition1/exercises.html>`__
1250+
<https://object-oriented-python.github.io/edition1/exercises.html>`__
12511251
obtain the skeleton code for these exercises. Clone the repository into
12521252
your working folder and install the package in editable mode.
12531253

@@ -1379,5 +1379,5 @@ six oscillating blinkers:
13791379
users. However the PEPs having to do with style have wider
13801380
significance.
13811381
1382-
.. [#exercise_page] `https://object-oriented-programming.github.io/edition1/exercises.html
1383-
<https://object-oriented-programming.github.io/edition1/exercises.html>`__
1382+
.. [#exercise_page] `https://object-oriented-python.github.io/edition1/exercises.html
1383+
<https://object-oriented-python.github.io/edition1/exercises.html>`__

‎doc/source/5_abstract_data_types.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -839,7 +839,7 @@ Exercises
839839
.. only:: not book
840840

841841
Using the information on the `book website
842-
<https://object-oriented-programming.github.io/edition1/exercises.html>`__
842+
<https://object-oriented-python.github.io/edition1/exercises.html>`__
843843
obtain the skeleton code for these exercises. You will also need to install
844844
the pytest-timeout package.
845845

@@ -963,5 +963,5 @@ Exercises
963963

964964
.. rubric:: Footnotes
965965

966-
.. [#exercise_page] `https://object-oriented-programming.github.io/edition1/exercises.html
967-
<https://object-oriented-programming.github.io/edition1/exercises.html>`__
966+
.. [#exercise_page] `https://object-oriented-python.github.io/edition1/exercises.html
967+
<https://object-oriented-python.github.io/edition1/exercises.html>`__

‎doc/source/6_exceptions.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -823,7 +823,7 @@ Exercises
823823
.. only:: not book
824824

825825
Using the information on the `book website
826-
<https://object-oriented-programming.github.io/edition1/exercises.html>`__
826+
<https://object-oriented-python.github.io/edition1/exercises.html>`__
827827
obtain the skeleton code for these exercises.
828828

829829
.. only:: book
@@ -889,5 +889,5 @@ Exercises
889889
.. [#function] "Function call" here includes :term:`method` calls and
890890
operations implemented using a :term:`special method`.
891891
892-
.. [#exercise_page] `https://object-oriented-programming.github.io/edition1/exercises.html
893-
<https://object-oriented-programming.github.io/edition1/exercises.html>`__
892+
.. [#exercise_page] `https://object-oriented-python.github.io/edition1/exercises.html
893+
<https://object-oriented-python.github.io/edition1/exercises.html>`__

‎doc/source/7_inheritance.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -788,7 +788,7 @@ Exercises
788788
.. only:: not book
789789

790790
Using the information on the `book website
791-
<https://object-oriented-programming.github.io/edition1/exercises.html>`__
791+
<https://object-oriented-python.github.io/edition1/exercises.html>`__
792792
obtain the skeleton code for these exercises.
793793

794794
.. only:: book
@@ -876,5 +876,5 @@ Exercises
876876

877877
.. rubric:: Footnotes
878878

879-
.. [#exercise_page] `https://object-oriented-programming.github.io/edition1/exercises.html
880-
<https://object-oriented-programming.github.io/edition1/exercises.html>`__
879+
.. [#exercise_page] `https://object-oriented-python.github.io/edition1/exercises.html
880+
<https://object-oriented-python.github.io/edition1/exercises.html>`__

‎doc/source/8_debugging.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -854,7 +854,7 @@ Exercises
854854
The exercises work a little differently this week, because the objective is
855855
not to write code but to practice debugging techniques. The information on
856856
the `book website
857-
<https://object-oriented-programming.github.io/edition1/exercises.html>`__
857+
<https://object-oriented-python.github.io/edition1/exercises.html>`__
858858
points not just to the skeleton code but also to an online quiz which will
859859
provide instant feedback on the questions below. You should access the
860860
skeleton code and then work through the quiz questions.
@@ -932,5 +932,5 @@ Exercises
932932
.. [#ufl] `https://github.com/object-oriented-python/ufl
933933
<https://github.com/object-oriented-python/ufl>`__
934934
935-
.. [#exercise_page] `https://object-oriented-programming.github.io/edition1/exercises.html
936-
<https://object-oriented-programming.github.io/edition1/exercises.html>`__
935+
.. [#exercise_page] `https://object-oriented-python.github.io/edition1/exercises.html
936+
<https://object-oriented-python.github.io/edition1/exercises.html>`__

‎doc/source/9_trees_and_directed_acyclic_graphs.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -1189,7 +1189,7 @@ Exercises
11891189
.. only:: not book
11901190

11911191
Using the information on the `book website
1192-
<https://object-oriented-programming.github.io/edition1/exercises.html>`__
1192+
<https://object-oriented-python.github.io/edition1/exercises.html>`__
11931193
obtain the skeleton code for these exercises. The exercises also make use
11941194
of the book repository which you installed in :ref:`in Chapter 2
11951195
<course_repo>`.
@@ -1252,5 +1252,5 @@ Exercises
12521252
also possible, and is a key feature of `the Julia programming language
12531253
<https://julialang.org>`_.
12541254
1255-
.. [#exercise_page] `https://object-oriented-programming.github.io/edition1/exercises.html
1256-
<https://object-oriented-programming.github.io/edition1/exercises.html>`__
1255+
.. [#exercise_page] `https://object-oriented-python.github.io/edition1/exercises.html
1256+
<https://object-oriented-python.github.io/edition1/exercises.html>`__

‎doc/webgit

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Subproject commit 115ba35d46d528f2e15ef62a87b709ca7c17c269
1+
Subproject commit 252c5425c6c90b9da3e1d2cb650dbd5474fb4312

0 commit comments

Comments
 (0)