Skip to content
Open
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
4 changes: 2 additions & 2 deletions src/services/categories/docs.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ module.exports = {
'/categories/{id}': {
'get': {
tags: ['categories'],
'description': 'Returns a categories based on category ID',
'description': 'Returns a category based on category ID',
'operationId': 'findCategoryById',
'produces': [
'application/json'
Expand Down Expand Up @@ -108,7 +108,7 @@ module.exports = {
},
'patch': {
tags: ['categories'],
'description': 'Updates a categories based on category ID',
'description': 'Updates a category based on category ID',
'operationId': 'updateCategoryById',
'produces': [
'application/json'
Expand Down
4 changes: 2 additions & 2 deletions src/services/products/docs.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ module.exports = {
'/products/{id}': {
'get': {
tags: ['products'],
'description': 'Returns a product based on an ID,',
'description': 'Returns a product based on an ID',
'operationId': 'findProductById',
'produces': [
'application/json'
Expand Down Expand Up @@ -108,7 +108,7 @@ module.exports = {
},
'patch': {
tags: ['products'],
'description': 'Updates a product based on an ID,',
'description': 'Updates a product based on an ID',
'operationId': 'updateProductById',
'produces': [
'application/json'
Expand Down
4 changes: 2 additions & 2 deletions src/services/services/docs.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ module.exports = {
'/services/{id}': {
'get': {
tags: ['services'],
'description': 'Returns a services based on service ID',
'description': 'Returns a service based on service ID',
'operationId': 'findServiceById',
'produces': [
'application/json'
Expand Down Expand Up @@ -108,7 +108,7 @@ module.exports = {
},
'patch': {
tags: ['services'],
'description': 'Updates a services based on service ID',
'description': 'Updates a service based on service ID',
'operationId': 'updateServiceById',
'produces': [
'application/json'
Expand Down