Skip to content

Commit

Permalink
fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
neydroid committed Oct 5, 2015
1 parent ae03da4 commit a09650d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Documentation/Examples.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Examples

On this page you'll find examples of the kind of resources R.swift supports and how you can use them. We aim to keep this page up to date and complete so this should be a overview of all posibillities.
On this page you'll find examples of the kind of resources R.swift supports and how you can use them. We aim to keep this page up to date and complete so this should be a overview of all possibilities.

## Images

Expand Down
2 changes: 1 addition & 1 deletion Documentation/QandA.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ Well you add R.swift as a Build phase to your target, basically this means that:

Swift is a beautiful language and one of it's main advantages is that more and more is typed. This catches a lot of errors at compile time. It feels very strange to refer to resources with strings that will always compile and then fail at runtime. It makes refactoring hard and it's to easy to create bugs like missing images etc.

In Android there is a generated R class that kind of solves this problem. That was why I decided to make something like it for us Swift developers and called the project R.swift. It was well received by collegues, friends and Github stargazers, so here we are now.
In Android there is a generated R class that kind of solves this problem. That was why I decided to make something like it for us Swift developers and called the project R.swift. It was well received by colleagues, friends and Github stargazers, so here we are now.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ It makes your code that uses resources:
Currently you type:
```swift
let icon = UIImage(named: "settings-icon")
let font = UIFont(name: "San Fransisco", size: 42)
let font = UIFont(name: "San Francisco", size: 42)
performSegueWithIdentifier("openSettings")
```

Expand Down

0 comments on commit a09650d

Please sign in to comment.