Skip to content

Commit

Permalink
📝 Update README.md (#378)
Browse files Browse the repository at this point in the history
Replace url with path
  • Loading branch information
chadgates committed Sep 28, 2023
1 parent c6ca36b commit 66fd2d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Add the health checker to a URL you want to use:
```python
urlpatterns = [
# ...
url(r'^ht/', include('health_check.urls')),
path(r'ht/', include('health_check.urls')),
]
```

Expand Down Expand Up @@ -238,7 +238,7 @@ and `render_to_response_json` properties:

urlpatterns = [
# ...
url(r'^ht/$', views.HealthCheckCustomView.as_view(), name='health_check_custom'),
path(r'ht/', views.HealthCheckCustomView.as_view(), name='health_check_custom'),
]
```

Expand Down

0 comments on commit 66fd2d0

Please sign in to comment.