Skip to content

Commit 35ac40c

Browse files
committed
Fix refs
1 parent a2ccc86 commit 35ac40c

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/main/kotlin/io/appwrite/services/Databases.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1311,7 +1311,7 @@ class Databases(client: Client) : Service(client) {
13111311
}
13121312

13131313
/**
1314-
* Create a geometric 2d point attribute.
1314+
* Create a geometric point attribute.
13151315
*
13161316
* @param databaseId Database ID.
13171317
* @param collectionId Collection ID. You can create a new collection using the Database service [server integration](https://appwrite.io/docs/server/databases#databasesCreateCollection).

src/main/kotlin/io/appwrite/services/TablesDb.kt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1111,7 +1111,7 @@ class TablesDB(client: Client) : Service(client) {
11111111
}
11121112

11131113
/**
1114-
* Create a geometric line attribute.
1114+
* Create a geometric line column.
11151115
*
11161116
* @param databaseId Database ID.
11171117
* @param tableId Table ID. You can create a new table using the TablesDB service [server integration](https://appwrite.io/docs/server/tablesdb#tablesDBCreate).
@@ -1155,7 +1155,7 @@ class TablesDB(client: Client) : Service(client) {
11551155
}
11561156

11571157
/**
1158-
* Update a line column. Changing the `default` value will not update already existing documents.
1158+
* Update a line column. Changing the `default` value will not update already existing rows.
11591159
*
11601160
* @param databaseId Database ID.
11611161
* @param tableId Table ID. You can create a new table using the TablesDB service [server integration](https://appwrite.io/docs/server/tablesdb#tablesDBCreate).
@@ -1202,7 +1202,7 @@ class TablesDB(client: Client) : Service(client) {
12021202
}
12031203

12041204
/**
1205-
* Create a geometric point attribute.
1205+
* Create a geometric point column.
12061206
*
12071207
* @param databaseId Database ID.
12081208
* @param tableId Table ID. You can create a new table using the TablesDB service [server integration](https://appwrite.io/docs/server/tablesdb#tablesDBCreate).
@@ -1246,7 +1246,7 @@ class TablesDB(client: Client) : Service(client) {
12461246
}
12471247

12481248
/**
1249-
* Update a point column. Changing the `default` value will not update already existing documents.
1249+
* Update a point column. Changing the `default` value will not update already existing rows.
12501250
*
12511251
* @param databaseId Database ID.
12521252
* @param tableId Table ID. You can create a new table using the TablesDB service [server integration](https://appwrite.io/docs/server/tablesdb#tablesDBCreate).
@@ -1293,7 +1293,7 @@ class TablesDB(client: Client) : Service(client) {
12931293
}
12941294

12951295
/**
1296-
* Create a geometric polygon attribute.
1296+
* Create a geometric polygon column.
12971297
*
12981298
* @param databaseId Database ID.
12991299
* @param tableId Table ID. You can create a new table using the TablesDB service [server integration](https://appwrite.io/docs/server/tablesdb#tablesDBCreate).
@@ -1337,7 +1337,7 @@ class TablesDB(client: Client) : Service(client) {
13371337
}
13381338

13391339
/**
1340-
* Update a polygon column. Changing the `default` value will not update already existing documents.
1340+
* Update a polygon column. Changing the `default` value will not update already existing rows.
13411341
*
13421342
* @param databaseId Database ID.
13431343
* @param tableId Table ID. You can create a new table using the TablesDB service [server integration](https://appwrite.io/docs/server/tablesdb#tablesDBCreate).

0 commit comments

Comments
 (0)