Skip to content

Commit

Permalink
Fixed regex doc spelling (#321)
Browse files Browse the repository at this point in the history
  • Loading branch information
qduk authored Jul 24, 2023
1 parent 04829b3 commit 75872de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/user/lib_use_cases_jinja_filters.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ When adding the netutils functions to your Jinja2 environment, you also gain acc
"regex_sub": "regex.regex_sub",
```

These functions will always return a json serializable object and not a complex object like `re.Match` or simialr to better serve the primary use case of functions to be used as Jinja2 filters. After all, they are simply small wrappers around Python `re` functions, the Python provided `re` functionality should be preferred when not using Jinja2 or similar templating language.
These functions will always return a json serializable object and not a complex object like `re.Match` or similar to better serve the primary use case of functions to be used as Jinja2 filters. After all, they are simply small wrappers around Python `re` functions, the Python provided `re` functionality should be preferred when not using Jinja2 or similar templating language.

Below is code that you can drop into your Python shell to help bring to life how these regex functions can be used.

Expand Down

0 comments on commit 75872de

Please sign in to comment.