Browse Source

Updates per PR comments

pull/3/head
Levi Olson 4 years ago
parent
commit
abec0147ac
3 changed files with 4 additions and 5 deletions
  1. +2
    -3
      core.css
  2. +1
    -1
      posts/basic-http-routing-in-golang.html
  3. +1
    -1
      posts/basic-http-routing-in-golang.md

+ 2
- 3
core.css View File

@ -176,6 +176,8 @@ img {
pre {
padding: 20px 10px !important;
background: #CCC;
border: 1px solid #888;
border-radius: 4px;
}
pre>code {
color: #333;
@ -187,9 +189,6 @@ code {
padding: 2px 6px;
border-radius: 4px;
}
pre.prettyprint {
border-radius: 4px;
}
code.prettyprint {
background: #CCC;
padding: 2px 8px;

+ 1
- 1
posts/basic-http-routing-in-golang.html View File

@ -8,7 +8,7 @@
<p>The accompanying repo for the code produced in this article is located <a href="https://github.com/leothelocust/basic-http-routing-in-golang">on github</a>.</p>
<h3 id="step1">Step 1</h3>
<p>Here is our basic folder structure for this basic http routing example:</p>
<pre class="prettyprint"><code> basic-http-routing-in-golang/
<pre><code> basic-http-routing-in-golang/
main.go
</code></pre>
<p>As a starting point our <code>main.go</code> file looks like this:</p>

+ 1
- 1
posts/basic-http-routing-in-golang.md View File

@ -18,7 +18,7 @@ The accompanying repo for the code produced in this article is located [on githu
Here is our basic folder structure for this basic http routing example:
<pre class="prettyprint"><code> basic-http-routing-in-golang/
<pre><code> basic-http-routing-in-golang/
main.go
</code></pre>

Loading…
Cancel
Save