Skip to content

Commit 171b52e

Browse files
committed
corrected/updated README
1 parent 4621b38 commit 171b52e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Proceed based on whether you're developing a Flutter app or a standalone dart pr
3434
* macOS: if dart later complains that it cannot find the `libobjectbox.dylib` you probably have to unsign the
3535
`dart` binary (source: [dart issue](https://github.com/dart-lang/sdk/issues/38314#issuecomment-534102841)):
3636
```shell script
37-
sudo xcode --remove-signature $(which dart)
37+
sudo codesign --remove-signature $(which dart)
3838
```
3939
* Windows: use "Git Bash" or similar to execute the following command
4040
```shell script
@@ -111,8 +111,8 @@ queryNullText.close(); // We have to manually close queries and query builders.
111111
```
112112

113113
More complex queries can be constructed using `and/or` operators.
114-
Also there is basic operator overloading support for `equal`, `greater`, `less`, `and` and `or`,
115-
respectively `==`, `>`, `<`, `&`, `|`.
114+
Also there is basic operator overloading support for `greater`, `less`, `and` and `or`,
115+
respectively `>`, `<`, `&`, `|`.
116116

117117
```dart
118118
// final box ...

0 commit comments

Comments
 (0)