diff --git a/README.md b/README.md
index de4f31a..25504dd 100644
--- a/README.md
+++ b/README.md
@@ -4,8 +4,8 @@ A TweetBot-like notice component for iOS.

-
-
+
+
## Usage
@@ -14,17 +14,17 @@ A TweetBot-like notice component for iOS.
### Examples
-- To display a small error notice:
+To display a small error notice:
WBNoticeView *nm = [WBNoticeView defaultManager];
[nm showErrorNoticeInView:self.view title:@"Network Error" message:@"Check your network connection."];
-- To display a large error notice, make the text long enough to wrap to another line. Only two lines are supported. If the text doesn't fit in two lines, an ellipsis will be appended at the end of the second line:
+To display a large error notice, make the text long enough to wrap to another line. Only two lines are supported. If the text doesn't fit in two lines, an ellipsis will be appended at the end of the second line:
WBNoticeView *nm = [WBNoticeView defaultManager];
[nm showErrorNoticeInView:self.view title:@"Network Error" message:@"Check your network connection. Twitter could also be down."];
-- To display a small success notice:
+To display a small success notice:
WBNoticeView *nm = [WBNoticeView defaultManager];
[nm showSuccessNoticeInView:self.view message:@"Link Saved Successfully"];