Skip to content

Commit 3bf0920

Browse files
committed
Fix refs
1 parent 5d2d520 commit 3bf0920

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

src/services/databases.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2375,7 +2375,7 @@ export class Databases {
23752375
}
23762376

23772377
/**
2378-
* Create a geometric 2d point attribute.
2378+
* Create a geometric point attribute.
23792379
*
23802380
* @param {string} params.databaseId - Database ID.
23812381
* @param {string} params.collectionId - Collection ID. You can create a new collection using the Database service [server integration](https://appwrite.io/docs/server/databases#databasesCreateCollection).
@@ -2388,7 +2388,7 @@ export class Databases {
23882388
*/
23892389
createPointAttribute(params: { databaseId: string, collectionId: string, key: string, required: boolean, xdefault?: string }): Promise<Models.AttributePoint>;
23902390
/**
2391-
* Create a geometric 2d point attribute.
2391+
* Create a geometric point attribute.
23922392
*
23932393
* @param {string} databaseId - Database ID.
23942394
* @param {string} collectionId - Collection ID. You can create a new collection using the Database service [server integration](https://appwrite.io/docs/server/databases#databasesCreateCollection).

src/services/tables-db.ts

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2168,7 +2168,7 @@ export class TablesDB {
21682168
}
21692169

21702170
/**
2171-
* Create a geometric line attribute.
2171+
* Create a geometric line column.
21722172
*
21732173
* @param {string} params.databaseId - Database ID.
21742174
* @param {string} params.tableId - Table ID. You can create a new table using the TablesDB service [server integration](https://appwrite.io/docs/server/tablesdb#tablesDBCreate).
@@ -2180,7 +2180,7 @@ export class TablesDB {
21802180
*/
21812181
createLineColumn(params: { databaseId: string, tableId: string, key: string, required: boolean, xdefault?: string }): Promise<Models.ColumnLine>;
21822182
/**
2183-
* Create a geometric line attribute.
2183+
* Create a geometric line column.
21842184
*
21852185
* @param {string} databaseId - Database ID.
21862186
* @param {string} tableId - Table ID. You can create a new table using the TablesDB service [server integration](https://appwrite.io/docs/server/tablesdb#tablesDBCreate).
@@ -2255,7 +2255,7 @@ export class TablesDB {
22552255
}
22562256

22572257
/**
2258-
* Update a line column. Changing the `default` value will not update already existing documents.
2258+
* Update a line column. Changing the `default` value will not update already existing rows.
22592259
*
22602260
* @param {string} params.databaseId - Database ID.
22612261
* @param {string} params.tableId - Table ID. You can create a new table using the TablesDB service [server integration](https://appwrite.io/docs/server/tablesdb#tablesDBCreate).
@@ -2268,7 +2268,7 @@ export class TablesDB {
22682268
*/
22692269
updateLineColumn(params: { databaseId: string, tableId: string, key: string, required: boolean, xdefault?: string, newKey?: string }): Promise<Models.ColumnLine>;
22702270
/**
2271-
* Update a line column. Changing the `default` value will not update already existing documents.
2271+
* Update a line column. Changing the `default` value will not update already existing rows.
22722272
*
22732273
* @param {string} databaseId - Database ID.
22742274
* @param {string} tableId - Table ID. You can create a new table using the TablesDB service [server integration](https://appwrite.io/docs/server/tablesdb#tablesDBCreate).
@@ -2346,7 +2346,7 @@ export class TablesDB {
23462346
}
23472347

23482348
/**
2349-
* Create a geometric point attribute.
2349+
* Create a geometric point column.
23502350
*
23512351
* @param {string} params.databaseId - Database ID.
23522352
* @param {string} params.tableId - Table ID. You can create a new table using the TablesDB service [server integration](https://appwrite.io/docs/server/tablesdb#tablesDBCreate).
@@ -2358,7 +2358,7 @@ export class TablesDB {
23582358
*/
23592359
createPointColumn(params: { databaseId: string, tableId: string, key: string, required: boolean, xdefault?: string }): Promise<Models.ColumnPoint>;
23602360
/**
2361-
* Create a geometric point attribute.
2361+
* Create a geometric point column.
23622362
*
23632363
* @param {string} databaseId - Database ID.
23642364
* @param {string} tableId - Table ID. You can create a new table using the TablesDB service [server integration](https://appwrite.io/docs/server/tablesdb#tablesDBCreate).
@@ -2433,7 +2433,7 @@ export class TablesDB {
24332433
}
24342434

24352435
/**
2436-
* Update a point column. Changing the `default` value will not update already existing documents.
2436+
* Update a point column. Changing the `default` value will not update already existing rows.
24372437
*
24382438
* @param {string} params.databaseId - Database ID.
24392439
* @param {string} params.tableId - Table ID. You can create a new table using the TablesDB service [server integration](https://appwrite.io/docs/server/tablesdb#tablesDBCreate).
@@ -2446,7 +2446,7 @@ export class TablesDB {
24462446
*/
24472447
updatePointColumn(params: { databaseId: string, tableId: string, key: string, required: boolean, xdefault?: string, newKey?: string }): Promise<Models.ColumnPoint>;
24482448
/**
2449-
* Update a point column. Changing the `default` value will not update already existing documents.
2449+
* Update a point column. Changing the `default` value will not update already existing rows.
24502450
*
24512451
* @param {string} databaseId - Database ID.
24522452
* @param {string} tableId - Table ID. You can create a new table using the TablesDB service [server integration](https://appwrite.io/docs/server/tablesdb#tablesDBCreate).
@@ -2524,7 +2524,7 @@ export class TablesDB {
25242524
}
25252525

25262526
/**
2527-
* Create a geometric polygon attribute.
2527+
* Create a geometric polygon column.
25282528
*
25292529
* @param {string} params.databaseId - Database ID.
25302530
* @param {string} params.tableId - Table ID. You can create a new table using the TablesDB service [server integration](https://appwrite.io/docs/server/tablesdb#tablesDBCreate).
@@ -2536,7 +2536,7 @@ export class TablesDB {
25362536
*/
25372537
createPolygonColumn(params: { databaseId: string, tableId: string, key: string, required: boolean, xdefault?: string }): Promise<Models.ColumnPolygon>;
25382538
/**
2539-
* Create a geometric polygon attribute.
2539+
* Create a geometric polygon column.
25402540
*
25412541
* @param {string} databaseId - Database ID.
25422542
* @param {string} tableId - Table ID. You can create a new table using the TablesDB service [server integration](https://appwrite.io/docs/server/tablesdb#tablesDBCreate).
@@ -2611,7 +2611,7 @@ export class TablesDB {
26112611
}
26122612

26132613
/**
2614-
* Update a polygon column. Changing the `default` value will not update already existing documents.
2614+
* Update a polygon column. Changing the `default` value will not update already existing rows.
26152615
*
26162616
* @param {string} params.databaseId - Database ID.
26172617
* @param {string} params.tableId - Table ID. You can create a new table using the TablesDB service [server integration](https://appwrite.io/docs/server/tablesdb#tablesDBCreate).
@@ -2624,7 +2624,7 @@ export class TablesDB {
26242624
*/
26252625
updatePolygonColumn(params: { databaseId: string, tableId: string, key: string, required: boolean, xdefault?: string, newKey?: string }): Promise<Models.ColumnPolygon>;
26262626
/**
2627-
* Update a polygon column. Changing the `default` value will not update already existing documents.
2627+
* Update a polygon column. Changing the `default` value will not update already existing rows.
26282628
*
26292629
* @param {string} databaseId - Database ID.
26302630
* @param {string} 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)