diff --git a/archive/v0.1.22/getting-started.html b/archive/v0.1.22/getting-started.html index 0046aa85..fa2a6a16 100644 --- a/archive/v0.1.22/getting-started.html +++ b/archive/v0.1.22/getting-started.html @@ -57,7 +57,7 @@

Once you have a copy of Mithril, getting started is surprisingly boilerplate-free:

<!doctype html>
 <title>Todo app</title>
-<script src="mithril.js"></script>
+<script src="mithril.min.js"></script>
 <script>
 //app goes here
 </script>
@@ -304,7 +304,7 @@ m.module(document, todo);

Summary

Here's the application code in its entirety:

<!doctype html>
-<script src="mithril.js"></script>
+<script src="mithril.min.js"></script>
 <script>
 //this application only has one module: todo
 var todo = {};
diff --git a/archive/v0.1.22/mithril.min.zip b/archive/v0.1.22/mithril.min.zip
index 433baebd..1ea2e11f 100644
Binary files a/archive/v0.1.22/mithril.min.zip and b/archive/v0.1.22/mithril.min.zip differ
diff --git a/docs/getting-started.md b/docs/getting-started.md
index 2c3c6193..ed2108ba 100644
--- a/docs/getting-started.md
+++ b/docs/getting-started.md
@@ -21,7 +21,7 @@ Once you have a [copy of Mithril](installation.md), getting started is surprisin
 ```markup
 
 Todo app
-
+
 
@@ -408,7 +408,7 @@ Here's the application code in its entirety:
 
 ```markup
 
-
+