[Docs] Clarity in README (#1)
diff --git a/README.md b/README.md
index 72c6cc6..babd0ed 100644
--- a/README.md
+++ b/README.md
@@ -15,8 +15,7 @@
## Overview
-In order to use custom fonts on iOS the font assets need to be registered before they can be used.
-Font Disk Loader lazily registers your custom fonts.
+Font Disk Loader lazily registers custom fonts and caches them even if they are not included in the app's info.plist.
## Installation
@@ -59,8 +58,8 @@
## Usage
Make sure to add your font (or the bundle it is in) to your app target. The FontDiskLoader will lazy
-register the font using a CoreText API so adding a the font to your `info.plist` is not necessary.
-All you need to do is initialize the loader with the font name and url to the file and ask for the
+register the font using a CoreText API so adding the font to your `info.plist` is not necessary.
+All you need to do is initialize the loader with the font name and url of the file and ask for the
font.
## Code snippets
@@ -69,7 +68,7 @@
#### Objective-C
~~~ objc
MDFFontDiskLoader *fontDiskLoader =
- [[MDFFontDiskLoader alloc] initWithFontName:nameOfFontInFile URL:fontURLOnDisk];
+ [[MDFFontDiskLoader alloc] initWithFontName:nameOfFontInFile fontURL:fontURLOnDisk];
UIFont *font = [fontDiskLoader fontOfSize:16];
~~~