Skip to content

Commit b962996

Browse files
committed
fix bad wording
1 parent 949dbaf commit b962996

5 files changed

+13
-10
lines changed

blog/2019-04-15-inversion-of-control.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,9 @@ <h1> What is Inversion of Control and Why Does it Matter?</h1>
4545

4646

4747
<div class="content">
48-
<p><em>David was a tech reviewer for the <a href="/">book</a> and he wrote these two excellent articles on inversion of control
49-
are cross-posted from <a href="https://seddonym.me/blog/">his blog where you can find lots more excellent content</a>.</em></p>
48+
<p><em>David was a tech reviewer for the <a href="/">book</a> and these two excellent
49+
articles on inversion of control are cross-posted from
50+
<a href="https://seddonym.me/blog/">his blog where you can find lots more excellent content</a>.</em></p>
5051
<p>When I first learned to program, the code I wrote all followed a particular pattern: I wrote instructions to the computer
5152
that it would execute, one by one. If I wanted to make use of utilities written elsewhere, such as in a third party library,
5253
I would call those utilities directly from my code. Code like this could be described as employing the &lsquo;traditional flow of control&rsquo;.

blog/2019-08-03-ioc-techniques.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,9 @@ <h1> Three Techniques for Inverting Control, in Python</h1>
4545

4646

4747
<div class="content">
48-
<p><em>David was a tech reviewer for the <a href="/">book</a> and he wrote these two excellent articles on inversion of control
49-
are cross-posted from <a href="https://seddonym.me/blog/">his blog where you can find lots more excellent content</a>.</em></p>
48+
<p><em>David was a tech reviewer for the <a href="/">book</a> and these two excellent
49+
articles on inversion of control are cross-posted from
50+
<a href="https://seddonym.me/blog/">his blog where you can find lots more excellent content</a>.</em></p>
5051
<p>In <a href="/blog/2019-04-15-inversion-of-control.html">the previous post</a> we learned how Inversion of Control can
5152
be visualised as follows:</p>
5253
<p><img src="/images/ioc-techniques/a-b-plugin.png" alt="B plugging into A"></p>

posts/2019-04-15-inversion-of-control.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ description: >
55
for simplifying systems that might otherwise become tangled and difficult to understand.
66
image: upside-down.jpg
77

8-
9-
_David was a tech reviewer for the <a href="/">book</a> and he wrote these two excellent articles on inversion of control
10-
are cross-posted from <a href="https://seddonym.me/blog/">his blog where you can find lots more excellent content</a>._
8+
_David was a tech reviewer for the <a href="/">book</a> and these two excellent
9+
articles on inversion of control are cross-posted from
10+
<a href="https://seddonym.me/blog/">his blog where you can find lots more excellent content</a>._
1111

1212
When I first learned to program, the code I wrote all followed a particular pattern: I wrote instructions to the computer
1313
that it would execute, one by one. If I wanted to make use of utilities written elsewhere, such as in a third party library,

posts/2019-08-03-ioc-techniques.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ description: >
77
Let's examine three different techniques for doing this.
88
image: ioc-techniques.jpg
99

10-
_David was a tech reviewer for the <a href="/">book</a> and he wrote these two excellent articles on inversion of control
11-
are cross-posted from <a href="https://seddonym.me/blog/">his blog where you can find lots more excellent content</a>._
10+
_David was a tech reviewer for the <a href="/">book</a> and these two excellent
11+
articles on inversion of control are cross-posted from
12+
<a href="https://seddonym.me/blog/">his blog where you can find lots more excellent content</a>._
1213

1314
In <a href="/blog/2019-04-15-inversion-of-control.html">the previous post</a> we learned how Inversion of Control can
1415
be visualised as follows:

rss.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Simple patterns for building complex apps
88
</description>
99
<link>https://cosmicpython.com</link>
10-
<lastBuildDate>Fri, 08 May 2020 18:53:14 -0000</lastBuildDate>
10+
<lastBuildDate>Fri, 08 May 2020 18:55:15 -0000</lastBuildDate>
1111
<pubDate>Sat, 4 Jan 2020 19:15:54 -0500</pubDate>
1212
<atom:link href="https://cosmicpython.com/rss.xml" rel="self" type="application/rss+xml" />
1313

0 commit comments

Comments
 (0)