Skip to content
This repository has been archived by the owner on May 12, 2024. It is now read-only.

Commit

Permalink
docs: update syntax for URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
browniebroke committed Nov 28, 2023
1 parent d0a1443 commit 6482529
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Add `tinymce.urls` to `urls.py` for your project:
```python
urlpatterns = [
...
url(r'^tinymce/', include('tinymce.urls')),
path('tinymce/', include('tinymce.urls')),
...
]
```
Expand Down
2 changes: 1 addition & 1 deletion docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Add `tinymce.urls` to `urls.py` for your project:
```python
urlpatterns = [
...
url(r'^tinymce/', include('tinymce.urls')),
path('tinymce/', include('tinymce.urls')),
...
]
```
Expand Down

0 comments on commit 6482529

Please sign in to comment.