Skip to content

Commit

Permalink
📝 Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ftchirou committed Jan 16, 2021
1 parent 763cf81 commit 242ee4f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion PredicateKit/SwiftUI/SwiftUISupport.swift
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ extension SwiftUI.FetchRequest where Result: NSManagedObject {
/// fetchRequest: FetchRequest(predicate: (\Note.text).contains("Hello, World!"))
/// .limit(50)
/// .offset(100)
/// .sorted(by: \.Note.creationDate)
/// .sorted(by: \Note.creationDate)
/// )
/// var notes: FetchedResults<Note>
///
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ struct ContentView: View {
fetchRequest: FetchRequest(predicate: (\Note.text).contains("Hello, World!"))
.limit(50)
.offset(100)
.sorted(by: \.Note.creationDate)
.sorted(by: \Note.creationDate)
)
var notes: FetchedResults<Note>

Expand Down

0 comments on commit 242ee4f

Please sign in to comment.