Skip to content

Commit d573b15

Browse files
committed
Fix refs
1 parent 073415b commit d573b15

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

lib/appwrite/services/databases.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1379,7 +1379,7 @@ def update_line_attribute(database_id:, collection_id:, key:, required:, default
13791379
#
13801380
# @deprecated This API has been deprecated since 1.8.0. Please use `TablesDB.createPointColumn` instead.
13811381
#
1382-
# Create a geometric 2d point attribute.
1382+
# Create a geometric point attribute.
13831383
#
13841384
# @param [String] database_id Database ID.
13851385
# @param [String] collection_id Collection ID. You can create a new collection using the Database service [server integration](https://appwrite.io/docs/server/databases#databasesCreateCollection).

lib/appwrite/services/tables_db.rb

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1193,7 +1193,7 @@ def update_ip_column(database_id:, table_id:, key:, required:, default:, new_key
11931193
)
11941194
end
11951195

1196-
# Create a geometric line attribute.
1196+
# Create a geometric line column.
11971197
#
11981198
# @param [String] database_id Database ID.
11991199
# @param [String] table_id Table ID. You can create a new table using the TablesDB service [server integration](https://appwrite.io/docs/server/tablesdb#tablesDBCreate).
@@ -1243,7 +1243,7 @@ def create_line_column(database_id:, table_id:, key:, required:, default: nil)
12431243
end
12441244

12451245
# Update a line column. Changing the `default` value will not update already
1246-
# existing documents.
1246+
# existing rows.
12471247
#
12481248
# @param [String] database_id Database ID.
12491249
# @param [String] table_id Table ID. You can create a new table using the TablesDB service [server integration](https://appwrite.io/docs/server/tablesdb#tablesDBCreate).
@@ -1294,7 +1294,7 @@ def update_line_column(database_id:, table_id:, key:, required:, default: nil, n
12941294
)
12951295
end
12961296

1297-
# Create a geometric point attribute.
1297+
# Create a geometric point column.
12981298
#
12991299
# @param [String] database_id Database ID.
13001300
# @param [String] table_id Table ID. You can create a new table using the TablesDB service [server integration](https://appwrite.io/docs/server/tablesdb#tablesDBCreate).
@@ -1344,7 +1344,7 @@ def create_point_column(database_id:, table_id:, key:, required:, default: nil)
13441344
end
13451345

13461346
# Update a point column. Changing the `default` value will not update already
1347-
# existing documents.
1347+
# existing rows.
13481348
#
13491349
# @param [String] database_id Database ID.
13501350
# @param [String] table_id Table ID. You can create a new table using the TablesDB service [server integration](https://appwrite.io/docs/server/tablesdb#tablesDBCreate).
@@ -1395,7 +1395,7 @@ def update_point_column(database_id:, table_id:, key:, required:, default: nil,
13951395
)
13961396
end
13971397

1398-
# Create a geometric polygon attribute.
1398+
# Create a geometric polygon column.
13991399
#
14001400
# @param [String] database_id Database ID.
14011401
# @param [String] table_id Table ID. You can create a new table using the TablesDB service [server integration](https://appwrite.io/docs/server/tablesdb#tablesDBCreate).
@@ -1445,7 +1445,7 @@ def create_polygon_column(database_id:, table_id:, key:, required:, default: nil
14451445
end
14461446

14471447
# Update a polygon column. Changing the `default` value will not update
1448-
# already existing documents.
1448+
# already existing rows.
14491449
#
14501450
# @param [String] database_id Database ID.
14511451
# @param [String] table_id 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)