Skip to content

Commit

Permalink
docs: Routing Definition Syntax fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nickelpro committed Dec 5, 2024
1 parent 131f5f4 commit 3a4cd71
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions docs/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ appearance in the route definition until the following forward slash (``/``) or
the end of the URL. Only a single path segment parameter may exist in a given
URL path segment.

Path segment delimiters may optionally be a name, in which case the
Path segment delimiters may optionally be followed by a name, in which case the
captured text from the URL will be associated with that name in the returned
parameter dictionary when a lookup is performed.

Expand All @@ -27,8 +27,8 @@ Examples::
# captured text


Catchall are delimited by an asterisk (``*``) and work the same as path
segment delimiters, except they always match to the end of the URL including
Catchalls are delimited by an asterisk (``*``) and work the same as path
segment parameters, except they always match to the end of the URL including
any forward slashes.

Examples::
Expand Down
4 changes: 2 additions & 2 deletions docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Installation
for:

* Windows (x86_64)
* MacOS 13.0+ (arm64)
* MacOS 13.3+ (arm64)
* manylinux_2_39 (x86_64)

On the supported platforms installing **nanoroute** is as simple as invoking
Expand Down Expand Up @@ -52,4 +52,4 @@ two additional options worth noting:

* ``NANOROUTE_USE_IPO``: Use interprocedural optimization if supported
(**Default:** On)
* ``NANOROUTE_STRIP``: Run system strip on compiled module (**Default:** On)
* ``NANOROUTE_STRIP``: Run system strip on the compiled module (**Default:** On)

0 comments on commit 3a4cd71

Please sign in to comment.