Skip to content

Commit 8362be5

Browse files
committed
fix markup in ioc post 2
1 parent ea8e390 commit 8362be5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Diff for: blog/2019-08-03-ioc-techniques.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ <h2>A second look at the pattern</h2>
151151
<p>Let&rsquo;s look again at the Inversion of Control pattern.</p>
152152
<p><img src="/images/ioc-techniques/di-pattern.png" alt="main pointing to A and B, A pointing to &lt;B&gt;, B pointing (open arrow) to &lt;B&gt;" /></p>
153153
<p>In order to invert control between <code>A</code> and <code>B</code>, we&rsquo;ve added two things to our design.</p>
154-
<p>The first is <code>&amp;lt;B&amp;gt;</code>. We&rsquo;ve separated out into its abstraction (which <code>A</code> will continue to depend on and know about),
154+
<p>The first is <code>&lt;&lt;B&gt;&gt;</code>. We&rsquo;ve separated out into its abstraction (which <code>A</code> will continue to depend on and know about),
155155
from its implementation (of which <code>A</code> is blissfully ignorant).</p>
156156
<p>However, somehow the software will need to make sure that <code>B</code> is used in place of its abstraction. We therefore need
157157
some orchestration code that knows about both <code>A</code> and <code>B</code>, and does the final linking of them together. I&rsquo;ve called

Diff for: posts/2019-08-03-ioc-techniques.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ Let's look again at the Inversion of Control pattern.
140140

141141
In order to invert control between ``A`` and ``B``, we've added two things to our design.
142142

143-
The first is ``&lt;B&gt;``. We've separated out into its abstraction (which ``A`` will continue to depend on and know about),
143+
The first is ``<<B>>``. We've separated out into its abstraction (which ``A`` will continue to depend on and know about),
144144
from its implementation (of which ``A`` is blissfully ignorant).
145145

146146
However, somehow the software will need to make sure that ``B`` is used in place of its abstraction. We therefore need

Diff for: rss.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Simple patterns for building complex apps
88
</description>
99
<link>https://www.cosmicpython.com</link>
10-
<lastBuildDate>Tue, 27 Oct 2020 14:08:23 -0000</lastBuildDate>
10+
<lastBuildDate>Thu, 05 Nov 2020 21:07:22 -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)