1
0
mirror of https://github.com/actix/actix-website synced 2024-11-24 00:41:07 +01:00

Fix white-space inconsistencies and a typo (#259)

This commit is contained in:
Alexandre Macabies 2022-02-25 23:18:32 +01:00 committed by GitHub
parent ff2b8d74e8
commit 890fea6c23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -225,7 +225,7 @@ The above pattern will match these URLs, generating the following match informat
``` ```
foo/1/2/ -> Params {'bar': '1', 'tail': '2/'} foo/1/2/ -> Params {'bar': '1', 'tail': '2/'}
foo/abc/def/a/b/c -> Params{'bar':u'abc', 'tail': 'def/a/b/c'} foo/abc/def/a/b/c -> Params {'bar': 'abc', 'tail': 'def/a/b/c'}
``` ```
# Scoping Routes # Scoping Routes