From 68a3a15e58db443c7a37c3f871150325487f820d Mon Sep 17 00:00:00 2001 From: Adjamilton Junior Date: Tue, 1 Oct 2024 01:03:01 -0300 Subject: [PATCH] Fix some typos --- docs/routing.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/routing.rst b/docs/routing.rst index 6794c77c..88ddea61 100644 --- a/docs/routing.rst +++ b/docs/routing.rst @@ -28,7 +28,7 @@ Path Result //123 `No Match` ============ ========================================= -Is it possible to escape characters like colon ``:`` with a backslash ``\``. This will prevent to trigger the old syntax in case you need to use ``:``. +It is possible to escape characters like colon ``:`` with a backslash ``\``. This will prevent to trigger the old syntax in case you need to use ``:``. For example: the rule ``//item:`` triggers the old syntax, (see below) but ``/action/item\:`` works as intended with the new syntax. @@ -78,7 +78,7 @@ Legacy Syntax .. versionchanged:: 0.10 -The new rule syntax was introduce in **Bottle 0.10** to simplify some common use cases, but the old syntax still works and you can find lot code examples still using it. The differences are best described by example: +The new rule syntax was introduced in **Bottle 0.10** to simplify some common use cases, but the old syntax still works and you can find lot of code examples still using it. The differences are best described by example: =================== ==================== Old Syntax New Syntax