Skip to content

Commit 0f53357

Browse files
authored
Markdown fixes flagged by IDE - incomplete table markup (#73)
1 parent 64dd0a6 commit 0f53357

File tree

1 file changed

+73
-73
lines changed

1 file changed

+73
-73
lines changed

API.md

Lines changed: 73 additions & 73 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,11 @@ echo $geometryCollection[1]->latitude; // 0
7373

7474
Retrieves the distance between 2 geometry objects. Uses [ST_Distance](https://dev.mysql.com/doc/refman/8.0/en/spatial-relation-functions-object-shapes.html#function_st-distance).
7575

76-
| parameter name | type | default |
77-
| ------------------ | -------------------- | ------- |
78-
| `$column` | `string` |
79-
| `$geometryOrColumn` | `Geometry \| string` |
80-
| `$alias` | `string` | `'distance'`
76+
| parameter name | type | default |
77+
|---------------------|---------------------|--------------|
78+
| `$column` | `string` | |
79+
| `$geometryOrColumn` | `Geometry \ string` | |
80+
| `$alias` | `string` | `'distance'` |
8181

8282
<details><summary>Example</summary>
8383

@@ -103,12 +103,12 @@ echo $placeWithDistance->distance_in_meters; // 156897.79947260793
103103

104104
Filters records by distance. Uses [ST_Distance](https://dev.mysql.com/doc/refman/8.0/en/spatial-relation-functions-object-shapes.html#function_st-distance).
105105

106-
| parameter name | type
107-
| ------------------ | --------------------
108-
| `$column` | `string`
109-
| `$geometryOrColumn` | `Geometry \| string`
110-
| `$operator` | `string`
111-
| `$value` | `int \| float`
106+
| parameter name | type |
107+
|---------------------|---------------------|
108+
| `$column` | `string` |
109+
| `$geometryOrColumn` | `Geometry \ string` |
110+
| `$operator` | `string` |
111+
| `$value` | `int \ float` |
112112

113113
<details><summary>Example</summary>
114114

@@ -128,11 +128,11 @@ echo $placesCountWithinDistance; // 1
128128

129129
Orders records by distance. Uses [ST_Distance](https://dev.mysql.com/doc/refman/8.0/en/spatial-relation-functions-object-shapes.html#function_st-distance).
130130

131-
| parameter name | type | default |
132-
| ------------------ | -------------------- | ------- |
133-
| `$column` | `string` |
134-
| `$geometryOrColumn` | `Geometry \| string` |
135-
| `$direction` | `string` | `'asc'`
131+
| parameter name | type | default |
132+
|---------------------|---------------------|---------|
133+
| `$column` | `string` | |
134+
| `$geometryOrColumn` | `Geometry \ string` | |
135+
| `$direction` | `string` | `'asc'` |
136136

137137
<details><summary>Example</summary>
138138

@@ -159,11 +159,11 @@ echo $places[1]->name; // first
159159

160160
Retrieves the spherical distance between 2 geometry objects. Uses [ST_Distance_Sphere](https://dev.mysql.com/doc/refman/8.0/en/spatial-convenience-functions.html#function_st-distance-sphere).
161161

162-
| parameter name | type | default |
163-
| ------------------ | -------------------- | ------- |
164-
| `$column` | `string` |
165-
| `$geometryOrColumn` | `Geometry \| string` |
166-
| `$alias` | `string` | `'distance'`
162+
| parameter name | type | default |
163+
|---------------------|---------------------|--------------|
164+
| `$column` | `string` | |
165+
| `$geometryOrColumn` | `Geometry \ string` | |
166+
| `$alias` | `string` | `'distance'` |
167167

168168
<details><summary>Example</summary>
169169

@@ -189,12 +189,12 @@ echo $placeWithDistance->distance_in_meters; // 157249.59776850493
189189

190190
Filters records by spherical distance. Uses [ST_Distance_Sphere](https://dev.mysql.com/doc/refman/8.0/en/spatial-convenience-functions.html#function_st-distance-sphere).
191191

192-
| parameter name | type
193-
| ------------------ | --------------------
194-
| `$column` | `string`
195-
| `$geometryOrColumn` | `Geometry \| string`
196-
| `$operator` | `string`
197-
| `$value` | `int \| float`
192+
| parameter name | type |
193+
|---------------------|---------------------|
194+
| `$column` | `string` |
195+
| `$geometryOrColumn` | `Geometry \ string` |
196+
| `$operator` | `string` |
197+
| `$value` | `int \ float` |
198198

199199
<details><summary>Example</summary>
200200

@@ -214,11 +214,11 @@ echo $placesCountWithinDistance; // 1
214214

215215
Orders records by spherical distance. Uses [ST_Distance_Sphere](https://dev.mysql.com/doc/refman/8.0/en/spatial-convenience-functions.html#function_st-distance-sphere).
216216

217-
| parameter name | type | default |
218-
| ------------------ | -------------------- | ------- |
219-
| `$column` | `string` |
220-
| `$geometryOrColumn` | `Geometry \| string` |
221-
| `$direction` | `string` | `'asc'`
217+
| parameter name | type | default |
218+
|---------------------|---------------------|---------|
219+
| `$column` | `string` | |
220+
| `$geometryOrColumn` | `Geometry \ string` | |
221+
| `$direction` | `string` | `'asc'` |
222222

223223
<details><summary>Example</summary>
224224

@@ -245,10 +245,10 @@ echo $places[1]->name; // first
245245

246246
Filters records by the [ST_Within](https://dev.mysql.com/doc/refman/8.0/en/spatial-relation-functions-object-shapes.html#function_st-within) function.
247247

248-
| parameter name | type
249-
| ------------------ | --------------------
250-
| `$column` | `string`
251-
| `$geometryOrColumn` | `Geometry \| string`
248+
| parameter name | type |
249+
|---------------------|---------------------|
250+
| `$column` | `string` |
251+
| `$geometryOrColumn` | `Geometry \ string` |
252252

253253
<details><summary>Example</summary>
254254

@@ -265,10 +265,10 @@ Place::query()
265265

266266
Filters records by the [ST_Within](https://dev.mysql.com/doc/refman/8.0/en/spatial-relation-functions-object-shapes.html#function_st-within) function.
267267

268-
| parameter name | type
269-
| ------------------ | --------------------
270-
| `$column` | `string`
271-
| `$geometryOrColumn` | `Geometry \| string`
268+
| parameter name | type |
269+
|---------------------|---------------------|
270+
| `$column` | `string` |
271+
| `$geometryOrColumn` | `Geometry \ string` |
272272

273273
<details><summary>Example</summary>
274274

@@ -285,10 +285,10 @@ Place::query()
285285

286286
Filters records by the [ST_Contains](https://dev.mysql.com/doc/refman/8.0/en/spatial-relation-functions-object-shapes.html#function_st-contains) function.
287287

288-
| parameter name | type
289-
| ------------------ | --------------------
290-
| `$column` | `string`
291-
| `$geometryOrColumn` | `Geometry \| string`
288+
| parameter name | type |
289+
|---------------------|---------------------|
290+
| `$column` | `string` |
291+
| `$geometryOrColumn` | `Geometry \ string` |
292292

293293
<details><summary>Example</summary>
294294

@@ -305,10 +305,10 @@ Place::query()
305305

306306
Filters records by the [ST_Contains](https://dev.mysql.com/doc/refman/8.0/en/spatial-relation-functions-object-shapes.html#function_st-contains) function.
307307

308-
| parameter name | type
309-
| ------------------ | --------------------
310-
| `$column` | `string`
311-
| `$geometryOrColumn` | `Geometry \| string`
308+
| parameter name | type |
309+
|---------------------|---------------------|
310+
| `$column` | `string` |
311+
| `$geometryOrColumn` | `Geometry \ string` |
312312

313313
<details><summary>Example</summary>
314314

@@ -325,10 +325,10 @@ Place::query()
325325

326326
Filters records by the [ST_Touches](https://dev.mysql.com/doc/refman/8.0/en/spatial-relation-functions-object-shapes.html#function_st-touches) function.
327327

328-
| parameter name | type
329-
| ------------------ | --------------------
330-
| `$column` | `string`
331-
| `$geometryOrColumn` | `Geometry \| string`
328+
| parameter name | type |
329+
|---------------------|---------------------|
330+
| `$column` | `string` |
331+
| `$geometryOrColumn` | `Geometry \ string` |
332332

333333
<details><summary>Example</summary>
334334

@@ -345,10 +345,10 @@ Place::query()
345345

346346
Filters records by the [ST_Intersects](https://dev.mysql.com/doc/refman/8.0/en/spatial-relation-functions-object-shapes.html#function_st-intersects) function.
347347

348-
| parameter name | type
349-
| ------------------ | --------------------
350-
| `$column` | `string`
351-
| `$geometryOrColumn` | `Geometry \| string`
348+
| parameter name | type |
349+
|---------------------|---------------------|
350+
| `$column` | `string` |
351+
| `$geometryOrColumn` | `Geometry \ string` |
352352

353353
<details><summary>Example</summary>
354354

@@ -365,10 +365,10 @@ Place::query()
365365

366366
Filters records by the [ST_Crosses](https://dev.mysql.com/doc/refman/8.0/en/spatial-relation-functions-object-shapes.html#function_st-crosses) function.
367367

368-
| parameter name | type
369-
| ------------------ | --------------------
370-
| `$column` | `string`
371-
| `$geometryOrColumn` | `Geometry \| string`
368+
| parameter name | type |
369+
|---------------------|---------------------|
370+
| `$column` | `string` |
371+
| `$geometryOrColumn` | `Geometry \ string` |
372372

373373
<details><summary>Example</summary>
374374

@@ -385,10 +385,10 @@ Place::query()
385385

386386
Filters records by the [ST_Disjoint](https://dev.mysql.com/doc/refman/8.0/en/spatial-relation-functions-object-shapes.html#function_st-disjoint) function.
387387

388-
| parameter name | type
389-
| ------------------ | --------------------
390-
| `$column` | `string`
391-
| `$geometryOrColumn` | `Geometry \| string`
388+
| parameter name | type |
389+
|---------------------|---------------------|
390+
| `$column` | `string` |
391+
| `$geometryOrColumn` | `Geometry \ string` |
392392

393393
<details><summary>Example</summary>
394394

@@ -405,10 +405,10 @@ Place::query()
405405

406406
Filters records by the [ST_Equal](https://dev.mysql.com/doc/refman/8.0/en/spatial-relation-functions-object-shapes.html#function_st-equals) function.
407407

408-
| parameter name | type
409-
| ------------------ | --------------------
410-
| `$column` | `string`
411-
| `$geometryOrColumn` | `Geometry \| string`
408+
| parameter name | type |
409+
|---------------------|---------------------|
410+
| `$column` | `string` |
411+
| `$geometryOrColumn` | `Geometry \ string` |
412412

413413
<details><summary>Example</summary>
414414

@@ -425,11 +425,11 @@ Place::query()
425425

426426
Filters records by the [ST_Srid](https://dev.mysql.com/doc/refman/8.0/en/gis-general-property-functions.html#function_st-srid) function.
427427

428-
| parameter name | type
429-
| ------------------ | --------------------
430-
| `$column` | `string`
431-
| `$operator` | `string`
432-
| `$value` | `int`
428+
| parameter name | type |
429+
|----------------|----------|
430+
| `$column` | `string` |
431+
| `$operator` | `string` |
432+
| `$value` | `int` |
433433

434434
<details><summary>Example</summary>
435435

0 commit comments

Comments
 (0)