Skip to content

Commit 5888211

Browse files
authored
use mongodb docs link in greet message (#232)
1 parent d409821 commit 5888211

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/cli-repl/src/cli-repl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ class CliRepl {
321321
*/
322322
greet(): void {
323323
const { version } = require('../package.json');
324-
console.log(`Using MongoDB: ${this.internalState.connectionInfo.buildInfo.version}`);
324+
console.log(`Using MongoDB: ${this.internalState.connectionInfo.buildInfo.version}`);
325325
console.log(`${clr('Using Mongosh Beta', ['bold', 'yellow'])}: ${version}`);
326326
console.log(`${MONGOSH_WIKI}`);
327327
if (!this.disableGreetingMessage) console.log(TELEMETRY);

packages/i18n/src/locales/en_US.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ const translations = {
6464
enabledTelemetry: 'Telemetry is now enabled.',
6565
disabledTelemetry: 'Telemetry is now disabled.',
6666
wiki: {
67-
info: 'For more information about mongosh, please see the wiki:',
68-
link: 'github.com/mongodb-js/mongosh/wiki'
67+
info: 'For more information about mongosh, please see our docs:',
68+
link: 'https://docs.mongodb.com/mongodb-shell/'
6969
}
7070
},
7171
'uri-generator': {

0 commit comments

Comments
 (0)