Skip to content

Commit

Permalink
fix dangling links in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
lonvia committed Aug 7, 2024
1 parent 6b1c328 commit d1e7b85
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions docs/admin/Deployment-Python.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ to configure it.
### Installing the required packages

The Nominatim frontend is best run from its own virtual environment. If
you have already created one for the database backend during
[installation](Installation.md#Building-Nominatim), you can use that. Otherwise
you have already created one for the database backend during the
[installation](Installation.md#building-nominatim), you can use that. Otherwise
create one now with:

```sh
Expand Down
2 changes: 1 addition & 1 deletion docs/customize/Tokenizers.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ NOMINATIM_DATABASE_MODULE_PATH=<path to directory where nominatim.so resides>
```

This is in particular useful when the database runs on a different server.
See [Advanced installations](../admin/Advanced-Installations.md#importing-nominatim-to-an-external-postgresql-database) for details.
See [Advanced installations](../admin/Advanced-Installations.md#using-an-external-postgresql-database) for details.

There are no other configuration options for the legacy tokenizer. All
normalization functions are hard-coded.
Expand Down
4 changes: 2 additions & 2 deletions docs/library/Input-Parameter-Types.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ in the query functions of the API object.

## Place identification

The [details](NominatimAPI.md#nominatim_api.core.NominatimAPI.details) and
[lookup](NominatimAPI.md#nominatim_api.core.NominatimAPI.lookup) functions
The [details](NominatimAPI.md#nominatim_api.NominatimAPI.details) and
[lookup](NominatimAPI.md#nominatim_api.NominatimAPI.lookup) functions
require references to places in the database. Below the possible
types for place identification are listed. All types are dataclasses.

Expand Down
2 changes: 1 addition & 1 deletion src/nominatim_api/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ def close(self) -> None:

@property
def config(self) -> Configuration:
""" Provide read-only access to the [configuration](#Configuration)
""" Provide read-only access to the [configuration](Configuration.md)
used by the API.
"""
return self._async_api.config
Expand Down
2 changes: 1 addition & 1 deletion src/nominatim_api/results.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ class AddressLine:

local_name: Optional[str] = None
""" Place holder for localization of this address part. See
[Localization](#localization) below.
[Localization](Result-Handling.md#localization) below.
"""


Expand Down

0 comments on commit d1e7b85

Please sign in to comment.