Skip to content

Commit 9799984

Browse files
committed
Fix refs
1 parent 78efd59 commit 9799984

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

templates/android/library/src/main/java/io/appwrite/Query.kt.twig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,15 +51,15 @@ class Query(
5151

5252
fun contains(attribute: String, value: Any) = Query("contains", attribute, parseValue(value)).toJson()
5353

54-
fun or(queries: List<string>): String {
54+
fun or(queries: List<String>): String {
5555
val queryObjects = mutableListOf<Query>()
5656
for(query in queries) {
5757
queryObjects.add(query.fromJson())
5858
}
5959
return Query("or", null, queryObjects).toJson()
6060
}
6161

62-
fun and(queries: List<string>): String {
62+
fun and(queries: List<String>): String {
6363
val queryObjects = mutableListOf<Query>()
6464
for(query in queries) {
6565
queryObjects.add(query.fromJson())

0 commit comments

Comments
 (0)