Skip to content

Commit 1907c40

Browse files
committed
Fix refs
1 parent 2494c38 commit 1907c40

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

docs/databases.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,7 @@ PATCH https://cloud.appwrite.io/v1/databases/{databaseId}/collections/{collectio
478478
POST https://cloud.appwrite.io/v1/databases/{databaseId}/collections/{collectionId}/attributes/point
479479
```
480480

481-
** Create a geometric 2d point attribute. **
481+
** Create a geometric point attribute. **
482482

483483
### Parameters
484484

docs/tablesdb.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ PATCH https://cloud.appwrite.io/v1/tablesdb/{databaseId}/tables/{tableId}/column
442442
POST https://cloud.appwrite.io/v1/tablesdb/{databaseId}/tables/{tableId}/columns/line
443443
```
444444

445-
** Create a geometric line attribute. **
445+
** Create a geometric line column. **
446446

447447
### Parameters
448448

@@ -459,7 +459,7 @@ POST https://cloud.appwrite.io/v1/tablesdb/{databaseId}/tables/{tableId}/columns
459459
PATCH https://cloud.appwrite.io/v1/tablesdb/{databaseId}/tables/{tableId}/columns/line/{key}
460460
```
461461

462-
** Update a line column. Changing the `default` value will not update already existing documents. **
462+
** Update a line column. Changing the `default` value will not update already existing rows. **
463463

464464
### Parameters
465465

@@ -477,7 +477,7 @@ PATCH https://cloud.appwrite.io/v1/tablesdb/{databaseId}/tables/{tableId}/column
477477
POST https://cloud.appwrite.io/v1/tablesdb/{databaseId}/tables/{tableId}/columns/point
478478
```
479479

480-
** Create a geometric point attribute. **
480+
** Create a geometric point column. **
481481

482482
### Parameters
483483

@@ -494,7 +494,7 @@ POST https://cloud.appwrite.io/v1/tablesdb/{databaseId}/tables/{tableId}/columns
494494
PATCH https://cloud.appwrite.io/v1/tablesdb/{databaseId}/tables/{tableId}/columns/point/{key}
495495
```
496496

497-
** Update a point column. Changing the `default` value will not update already existing documents. **
497+
** Update a point column. Changing the `default` value will not update already existing rows. **
498498

499499
### Parameters
500500

@@ -512,7 +512,7 @@ PATCH https://cloud.appwrite.io/v1/tablesdb/{databaseId}/tables/{tableId}/column
512512
POST https://cloud.appwrite.io/v1/tablesdb/{databaseId}/tables/{tableId}/columns/polygon
513513
```
514514

515-
** Create a geometric polygon attribute. **
515+
** Create a geometric polygon column. **
516516

517517
### Parameters
518518

@@ -529,7 +529,7 @@ POST https://cloud.appwrite.io/v1/tablesdb/{databaseId}/tables/{tableId}/columns
529529
PATCH https://cloud.appwrite.io/v1/tablesdb/{databaseId}/tables/{tableId}/columns/polygon/{key}
530530
```
531531

532-
** Update a polygon column. Changing the `default` value will not update already existing documents. **
532+
** Update a polygon column. Changing the `default` value will not update already existing rows. **
533533

534534
### Parameters
535535

src/Appwrite/Services/Databases.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1258,7 +1258,7 @@ public function updateLineAttribute(string $databaseId, string $collectionId, st
12581258
}
12591259

12601260
/**
1261-
* Create a geometric 2d point attribute.
1261+
* Create a geometric point attribute.
12621262
*
12631263
* @param string $databaseId
12641264
* @param string $collectionId

src/Appwrite/Services/TablesDb.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1096,7 +1096,7 @@ public function updateIpColumn(string $databaseId, string $tableId, string $key,
10961096
}
10971097

10981098
/**
1099-
* Create a geometric line attribute.
1099+
* Create a geometric line column.
11001100
*
11011101
* @param string $databaseId
11021102
* @param string $tableId
@@ -1134,7 +1134,7 @@ public function createLineColumn(string $databaseId, string $tableId, string $ke
11341134

11351135
/**
11361136
* Update a line column. Changing the `default` value will not update already
1137-
* existing documents.
1137+
* existing rows.
11381138
*
11391139
* @param string $databaseId
11401140
* @param string $tableId
@@ -1176,7 +1176,7 @@ public function updateLineColumn(string $databaseId, string $tableId, string $ke
11761176
}
11771177

11781178
/**
1179-
* Create a geometric point attribute.
1179+
* Create a geometric point column.
11801180
*
11811181
* @param string $databaseId
11821182
* @param string $tableId
@@ -1214,7 +1214,7 @@ public function createPointColumn(string $databaseId, string $tableId, string $k
12141214

12151215
/**
12161216
* Update a point column. Changing the `default` value will not update already
1217-
* existing documents.
1217+
* existing rows.
12181218
*
12191219
* @param string $databaseId
12201220
* @param string $tableId
@@ -1256,7 +1256,7 @@ public function updatePointColumn(string $databaseId, string $tableId, string $k
12561256
}
12571257

12581258
/**
1259-
* Create a geometric polygon attribute.
1259+
* Create a geometric polygon column.
12601260
*
12611261
* @param string $databaseId
12621262
* @param string $tableId
@@ -1294,7 +1294,7 @@ public function createPolygonColumn(string $databaseId, string $tableId, string
12941294

12951295
/**
12961296
* Update a polygon column. Changing the `default` value will not update
1297-
* already existing documents.
1297+
* already existing rows.
12981298
*
12991299
* @param string $databaseId
13001300
* @param string $tableId

0 commit comments

Comments
 (0)