diff --git a/README.md b/README.md
index 777a679..c27bd5d 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
-
+
-AFNetworking is a delightful networking library for iOS and Mac OS X. It's built on top of [`NSURLConnection`](http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/NSURLConnection_Class/Reference/Reference.html), [`NSOperation`](http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/NSOperation_class/Reference/Reference.html), and other familiar Foundation technologies. It has a modular architecture with well-designed, feature-rich APIs that are a joy to use. For example, here's how easy it is to get JSON from a URL:
+AFNetworking is a delightful networking library for iOS and Mac OS X. It's built on top of [NSURLConnection](http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/NSURLConnection_Class/Reference/Reference.html), [NSOperation](http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/NSOperation_class/Reference/Reference.html), and other familiar Foundation technologies. It has a modular architecture with well-designed, feature-rich APIs that are a joy to use. For example, here's how easy it is to get JSON from a URL:
``` objective-c
NSURL *url = [NSURL URLWithString:@"https://gowalla.com/users/mattt.json"];
@@ -13,7 +13,7 @@ AFJSONRequestOperation *operation = [AFJSONRequestOperation JSONRequestOperation
Perhaps the most important feature of all, however, is the amazing community of developers who use and contribute to AFNetworking every day. AFNetworking powers some of the most popular and critically-acclaimed apps on the iPhone, iPad, and Mac.
-Choose AFNetworking for your next project, or migrate over your existing projects--you'll be happy you did!
+Choose AFNetworking for your next project, or migrate over your existing projects—you'll be happy you did!
## How To Get Started
@@ -26,13 +26,13 @@ Choose AFNetworking for your next project, or migrate over your existing project
AFNetworking is architected to be as small and modular as possible, in order to make it simple to use and extend.
| Core | ||
|---|---|---|
| Core | ||
| AFURLConnectionOperation | -An NSOperation subclass that implements the NSURLConnection delegate methods. | +An NSOperation that implements the NSURLConnection delegate methods. |
| HTTP Requests | ||
| HTTP Requests | ||
| AFHTTPRequestOperation | @@ -48,10 +48,10 @@ AFNetworking is architected to be as small and modular as possible, in order to||
| AFPropertyListRequestOperation | -A subclass of AFHTTPRequestOperation for downloading and deserializing objects with property list (plist) response data. | +A subclass of AFHTTPRequestOperation for downloading and deserializing objects with [property list](http://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/PropertyLists/index.html) response data. |
| HTTP Client | ||
| HTTP Client | ||
| AFHTTPClient | @@ -70,14 +70,14 @@ AFNetworking is architected to be as small and modular as possible, in order to | |
| Images | ||
| Images | ||
| AFImageRequestOperation | A subclass of AFHTTPRequestOperation for downloading an processing images. | |
| UIImageView+AFNetworking | -Adds methods to the UIKit framework’s UIImageView class. The methods in this category provide support for loading remote images asynchronously from a URL. | +Adds methods to `UIImageView` for loading remote images asynchronously from a URL. |