Skip to content

Commit b27de67

Browse files
authored
Merge pull request #1 from mpclarkson/mpclarkson-patch-1
Fixed read_user_by_id docstring
2 parents 5cb50a9 + d192d34 commit b27de67

File tree

1 file changed

+1
-1
lines changed
  • {{cookiecutter.project_slug}}/backend/app/app/api/api_v1/endpoints

1 file changed

+1
-1
lines changed

{{cookiecutter.project_slug}}/backend/app/app/api/api_v1/endpoints/user.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def read_user_by_id(
123123
db: Session = Depends(get_db),
124124
):
125125
"""
126-
Get a specific user by username (email)
126+
Get a specific user by id
127127
"""
128128
user = crud.user.get(db, user_id=user_id)
129129
if user == current_user:

0 commit comments

Comments
 (0)