Skip to content

Commit f85d8cb

Browse files
authored
Fix comment syntax error in doc that fails pre-commit blacken-docs (#9225)
* Fix comment syntax in doc * Pre-commit
1 parent 552a67a commit f85d8cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/topics/browsable-api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ To quickly add authentication to the browesable api, add a routes named `"login"
2121

2222
```python
2323
urlpatterns = [
24-
// ...
25-
url(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework'))
24+
# ...
25+
url(r"^api-auth/", include("rest_framework.urls", namespace="rest_framework"))
2626
]
2727
```
2828

0 commit comments

Comments
 (0)