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 ```html
<!DOCTYPE html> <!DOCTYPE html>
<head> <head>
<title>Hello World</title> <title>Hello World</title>
<link rel="stylesheet" href="sundellsColors.css"> <link rel="stylesheet" href="sundellsColors.css">
</head> </head>
<pre> <pre>
<code> <code>
<span class="keyword">func</span> hello(world: <span class="type">String</span>) -> <span class="type">Int</span> <span class="keyword">func</span> hello(world: <span class="type">String</span>) -> <span class="type">Int</span>
</code> </code>
</pre> </pre>
``` ```