diff --git a/assets/javascripts/templates/pages/offline_tmpl.coffee b/assets/javascripts/templates/pages/offline_tmpl.coffee
index 4b993a76..d457b93b 100644
--- a/assets/javascripts/templates/pages/offline_tmpl.coffee
+++ b/assets/javascripts/templates/pages/offline_tmpl.coffee
@@ -23,7 +23,7 @@ app.templates.offlinePage = (docs) -> """
Questions & Answers
- How does this work?
-
- Each page is cached as a key-value pair in IndexedDB (downloaded from a single JSON file).
+ - Each page is cached as a key-value pair in IndexedDB (downloaded from a single file).
The app also uses AppCache and localStorage to cache the assets and index files.
- Can I close the tab/browser?
- #{canICloseTheTab()}
@@ -44,7 +44,7 @@ canICloseTheTab = ->
""" Yes! Even offline, you can open a new tab, go to devdocs.io, and everything will work as if you were online (provided you installed all the documentations you want to use beforehand).
Note that loading any page other than devdocs.io directly won't work (due to limitations in AppCache). """
else
- """ No. Because AppCache is unavailable in your browser (or has been disabled), loading devdocs.io offline won't work.
+ """ No. AppCache isn't available in your browser (or is disabled) so loading devdocs.io offline won't work.
The current tab will continue to work, though (provided you installed all the documentations you want to use beforehand). """
app.templates.offlineDoc = (doc, status) ->