diff options
author | Wan Bachtiar <sindbach@gmail.com> | 2017-12-20 12:44:46 +1100 |
---|---|---|
committer | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2017-12-20 12:04:23 -0500 |
commit | b3033d477f2356d17a0e5263775a0e2dfce75ede (patch) | |
tree | 1196491959309eaa38f57a42e791ec6ed1fbc516 /src | |
parent | 0e52ba439f8dc20c3baf5c19946a2192199be492 (diff) | |
download | mongo-b3033d477f2356d17a0e5263775a0e2dfce75ede.tar.gz |
SERVER-32415 Fix typo on MongoDB in Compass Installer
Closes #1194
Signed-off-by: Mark Benvenuto <mark.benvenuto@mongodb.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/mongo/installer/msi/wxs/UIFragment.wxs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/installer/msi/wxs/UIFragment.wxs b/src/mongo/installer/msi/wxs/UIFragment.wxs index 15ca9172a80..2cb7affcfe5 100644 --- a/src/mongo/installer/msi/wxs/UIFragment.wxs +++ b/src/mongo/installer/msi/wxs/UIFragment.wxs @@ -155,7 +155,7 @@ <Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Text="{\WixUI_Font_Title}Install MongoDB Compass" TabSkip="yes" Transparent="yes" NoPrefix="yes" />
<Control Id="Description" Type="Text" X="25" Y="23" Width="280" Height="15" Text="MongoDB Compass is the official graphical user interface for MongoDB." TabSkip="yes" Transparent="yes" NoPrefix="yes" />
<Control Id="LongDescription" Type="Text" X="25" Y="50"
- Width="280" Height="30" Text="By checking below this installer will automatically download and install the latest version of MongoDB Compass on this machine. You can learn more about MongDB Compass here: https://www.mongodb.com/products/compass" TabSkip="yes" NoPrefix="yes" />
+ Width="280" Height="30" Text="By checking below this installer will automatically download and install the latest version of MongoDB Compass on this machine. You can learn more about MongoDB Compass here: https://www.mongodb.com/products/compass" TabSkip="yes" NoPrefix="yes" />
<Control Id="InstallCompass" CheckBoxValue="1" Property="SHOULD_INSTALL_COMPASS" X="15" Y="243" Width="150" Height="17" Text="Install MongoDB Compass" Type="CheckBox" />
|