Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typo api summarys #364

Merged
merged 4 commits into from
Feb 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion backend/src/api/endpoints/document_tag.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ def add_memo(
@router.get(
"/{tag_id}/memo",
response_model=List[MemoRead],
summary="Returns the Memo attached to the DocumentTag with the given ID if it exists.",
summary="Returns the Memos attached to the DocumentTag with the given ID if it exists.",
)
def get_memos(
*,
Expand Down
2 changes: 1 addition & 1 deletion backend/src/api/endpoints/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ def add_memo(
@router.get(
"/{proj_id}/memo",
response_model=List[MemoRead],
summary="Returns the Memo of the current User for the Project with the given ID.",
summary="Returns the Memos of the current User for the Project with the given ID.",
)
def get_memos(
*,
Expand Down
2 changes: 1 addition & 1 deletion backend/src/api/endpoints/span_annotation.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ def add_memo(
@router.get(
"/{span_id}/memo",
response_model=List[MemoRead],
summary="Returns the Memo attached to the SpanAnnotation with the given ID if it exists.",
summary="Returns the Memos attached to the SpanAnnotation with the given ID if it exists.",
)
def get_memos(
*,
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/api/openapi/services/DocumentTagService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ export class DocumentTagService {
}

/**
* Returns the Memo attached to the DocumentTag with the given ID if it exists.
* Returns the Memos attached to the DocumentTag with the given ID if it exists.
* @returns MemoRead Successful Response
* @throws ApiError
*/
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/api/openapi/services/ProjectService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ export class ProjectService {
}

/**
* Returns the Memo of the current User for the Project with the given ID.
* Returns the Memos of the current User for the Project with the given ID.
* @returns MemoRead Successful Response
* @throws ApiError
*/
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/api/openapi/services/SpanAnnotationService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ export class SpanAnnotationService {
}

/**
* Returns the Memo attached to the SpanAnnotation with the given ID if it exists.
* Returns the Memos attached to the SpanAnnotation with the given ID if it exists.
* @returns MemoRead Successful Response
* @throws ApiError
*/
Expand Down