Skip to content

Commit

Permalink
Small fix to the docs for API changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Livesey committed Oct 3, 2016
1 parent 352a4aa commit df6496c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/pages/010_rocketData.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The application has two view controllers. One shows a message from a person. The
dataProvider.delegate = self
dataProvider.fetchDataFromCache(cacheKey: self.id) { (model, error) in
dataProvider.fetchDataFromCache(withCacheKey: self.id) { (model, error) in
self.refreshView()
}
Expand Down Expand Up @@ -54,7 +54,7 @@ The application has two view controllers. One shows a message from a person. The
dataProvider.delegate = self
dataProvider.fetchDataFromCache(cacheKey: "contacts") { (models, error) in
dataProvider.fetchDataFromCache(withCacheKey: "contacts") { (models, error) in
self.tableView.reloadData()
}
Expand Down

0 comments on commit df6496c

Please sign in to comment.