Fix doc output

This commit is contained in:
Râu Cao 2026-01-26 19:40:38 +07:00
parent 7274574f64
commit aa2d0ed58b
Signed by: raucao
GPG Key ID: 37036C356E56CC51
2 changed files with 3 additions and 3 deletions

View File

@ -118,7 +118,7 @@ The geohash of the place.
Store a place.
Generates ID and Geohash if missing.
Path structure: <geohash-prefix-2>/<geohash-prefix-2>/<id>
Path structure: `<geohash-prefix-2>/<geohash-prefix-2>/<id>`
#### Parameters

View File

@ -56,7 +56,7 @@ export interface PlacesClient {
/**
* Store a place.
* Generates ID and Geohash if missing.
* Path structure: <geohash-prefix-2>/<geohash-prefix-2>/<id>
* Path structure: `<geohash-prefix-2>/<geohash-prefix-2>/<id>`
*
* @param placeData - The data of the place to store.
* @returns The stored place object.
@ -157,7 +157,7 @@ const Places = function (
/**
* Store a place.
* Generates ID and Geohash if missing.
* Path structure: <geohash-prefix-2>/<geohash-prefix-2>/<id>
* Path structure: `<geohash-prefix-2>/<geohash-prefix-2>/<id>`
*/
store: async function (placeData: Partial<Place>) {
const place = preparePlace(placeData);