Skip to content

Commit b208823

Browse files
committed
Update docs in Readme.
1 parent 148898a commit b208823

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ try personBox.put(santa)
1616
let query: Query<Person> = personBox.query {
1717
return (Person.firstName.contains("Santa") || Person.age > 100)
1818
&& Person.lastName.isEqual(to: "Claus")
19-
}
19+
}.build()
2020
let oldClauses = query.find()
2121
```
2222

@@ -95,7 +95,12 @@ For general news on ObjectBox, [check our blog](https://objectbox.io/blog).
9595
Background: Code generation
9696
---------------------------
9797
ObjectBox Swift generates code at build time for optimal performance at runtime by avoiding reflection etc.
98-
This is automatically done for you and should be transparent. Internally, we use Sourcery for this.
98+
This is automatically done for you and should be transparent. Internally, we use [a fork of Sourcery](https://github.com/objectbox/objectbox-swift-generator) for this.
99+
100+
Source Code
101+
-----------
102+
103+
Source code for ObjectBox's Swift binding can be found [in the Source folder](Source/README.md).
99104

100105
Other languages/bindings
101106
------------------------

0 commit comments

Comments
 (0)