Skip to content

Commit

Permalink
Fix linting of error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
kokerinks committed Jul 2, 2024
1 parent 2dedfb2 commit 9f32e4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/core/services/error-message.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ import { Injectable } from '@angular/core';
*/
export class ErrorMessageService {
public static repoPrefixNotPresentMessage() {
return 'Invalid repo prefix. Please provide a repository URL or repo name with a valid prefix (org/user name), using the format <ORG/USER_NAME>/<REPO_NAME>';
return 'Invalid repo prefix. Provide a repository URL or repo name with a valid prefix. (e.g. <ORG/USER>/<REPO>)';
}

public static repositoryNotPresentMessage() {
return 'Invalid repository name. Please provide Github repository URL or the repository name in the format <ORG/USER_NAME>/<REPO_NAME>.';
return 'Invalid repository name. Please provide a Github repository URL or repo name in the format <ORG/USER>/<REPO>.';
}

public static invalidUrlMessage() {
Expand Down

0 comments on commit 9f32e4a

Please sign in to comment.