Skip to content

Commit 8067029

Browse files
author
Brent Harrell
committed
Small typo fixes
1 parent e3fe40f commit 8067029

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/api/v2/handlers/fact_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ async def add_facts(self, request: web.Request):
9595
raise JsonHttpBadRequest(error_msg)
9696

9797
@aiohttp_apispec.docs(tags=['relationships'],
98-
summary='Create a Relationship.',
98+
summary='Create a Relationship',
9999
description='Create a new relationship using the format provided in the `RelationshipSchema`.')
100100
@aiohttp_apispec.request_schema(RelationshipSchema)
101101
@aiohttp_apispec.response_schema(RelationshipSchema, description='Returns the created relationship, dumped in `RelationshipSchema` format.')
@@ -134,7 +134,7 @@ async def add_relationships(self, request: web.Request):
134134
raise JsonHttpBadRequest(error_msg)
135135

136136
@aiohttp_apispec.docs(tags=['facts'],
137-
summary='Delete One or More Fact(s)',
137+
summary='Delete One or More Facts',
138138
description='Delete facts using the format provided in the `FactSchema`. '
139139
'This will delete all facts that match the criteria specified in the payload.')
140140
@aiohttp_apispec.request_schema(FactSchema(partial=True))

0 commit comments

Comments
 (0)