Skip to content

Commit

Permalink
Fix warning and log messages to use capitals and period
Browse files Browse the repository at this point in the history
  • Loading branch information
macmv committed Oct 3, 2023
1 parent e86f0f3 commit b362679
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/commands/endpoint/add.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export default class AddEndpointCommand extends Command {
}
} catch (e) {
ux.action.stop();
console.log("Warning: could not connect to fauna");
console.log("Warning: could not connect to Fauna");
} finally {
await client.close();
}
Expand Down
2 changes: 1 addition & 1 deletion src/commands/endpoint/remove.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ export default class DeleteEndpointCommand extends Command {

config.saveRootConfig();

this.log(`Removed endpoint ${name}`);
this.log(`Removed endpoint ${name}.`);
}
}

0 comments on commit b362679

Please sign in to comment.