Spaces not tabs

updated to use spaces instead of tabs to be consistent
This commit is contained in:
Luke Street 2019-01-12 01:14:36 -06:00 committed by GitHub
parent f1796eb99b
commit 7186bd6548
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -56,14 +56,14 @@ When rendering your outputted html, make sure to wrap your output code in the `<
```html
<!DOCTYPE html>
<head>
<title>Hello World</title>
<link rel="stylesheet" href="sundellsColors.css">
<title>Hello World</title>
<link rel="stylesheet" href="sundellsColors.css">
</head>
<pre>
<code>
<span class="keyword">func</span> hello(world: <span class="type">String</span>) -> <span class="type">Int</span>
</code>
<span class="keyword">func</span> hello(world: <span class="type">String</span>) -> <span class="type">Int</span>
</code>
</pre>
```