Authored by Daniel Hammond

Fix some typos in README.md

@@ -7,7 +7,7 @@ For examples take a look at the **Masonry iOS Examples** project in the Masonry @@ -7,7 +7,7 @@ For examples take a look at the **Masonry iOS Examples** project in the Masonry
7 7
8 ## Whats wrong with NSLayoutConstraints? 8 ## Whats wrong with NSLayoutConstraints?
9 9
10 -Under the hood Auto Layout is a powerful and flexible way of organising and laying out your views. However creating constraints from code is verbose and not very descriptive. 10 +Under the hood Auto Layout is a powerful and flexible way of organizing and laying out your views. However creating constraints from code is verbose and not very descriptive.
11 Imagine a simple example in which you want to have a view fill its superview but inset by 10 pixels on every side 11 Imagine a simple example in which you want to have a view fill its superview but inset by 10 pixels on every side
12 ```obj-c 12 ```obj-c
13 UIView *superview = self; 13 UIView *superview = self;
@@ -170,7 +170,7 @@ make.top.equalTo(label.mas_top).with.priority(600); @@ -170,7 +170,7 @@ make.top.equalTo(label.mas_top).with.priority(600);
170 170
171 ## Composition, composition, composition 171 ## Composition, composition, composition
172 172
173 -Masonry also gives you a few convenience methods which create mutliple constraints at the same time. These are called MASCompositeConstraints 173 +Masonry also gives you a few convenience methods which create multiple constraints at the same time. These are called MASCompositeConstraints
174 174
175 #### edges 175 #### edges
176 176