Skip to content

Commit

Permalink
corrected comment
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhila-aot committed Mar 14, 2024
1 parent 997bd8e commit 25c8f29
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions backend/applications/src/app/controllers/form.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ export class FormController {
constructor(private formService: FormService) { }

/**
* Gets count of submitted forms
* @returns form count
* Checks if table exists
* @returns boolean
*/
@Get('health')
async healthCheck(): Promise<number> {
Expand Down
2 changes: 1 addition & 1 deletion backend/applications/src/app/services/form.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export class FormService {

/**
* Checks if table exists
* @returns form count
* @returns boolean
*/
async healthCheck(): Promise<any> {
const tableExists = (
Expand Down

0 comments on commit 25c8f29

Please sign in to comment.