Skip to content
This repository has been archived by the owner on Nov 30, 2019. It is now read-only.

Commit

Permalink
fixed CGRect and UIEdgeInsets docs
Browse files Browse the repository at this point in the history
  • Loading branch information
tonklon committed Mar 9, 2013
1 parent 6419c94 commit 5b3680f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -271,13 +271,13 @@ Here are some examples and eqivalent values in _Objective-C_ code.

| JSON | Objective-C |
-------|--------------
| ```[1, 2, 3, 4]``` | ```CGRectMake(1, 2)``` |
| ```[1, 2, 3, 4]``` | ```CGRectMake(1, 2, 3, 4)``` |

#### UIEdgeInsets

| JSON | Objective-C |
-------|--------------
| ```[1, 2, 3, 4]``` | ```UIEdgeInsetsMake(1, 2)``` |
| ```[1, 2, 3, 4]``` | ```UIEdgeInsetsMake(1, 2, 3, 4)``` |

#### UIOffset

Expand Down

0 comments on commit 5b3680f

Please sign in to comment.