diff options
author | Wan Bachtiar <sindbach@gmail.com> | 2017-12-20 12:44:46 +1100 |
---|---|---|
committer | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2017-12-27 14:28:42 -0500 |
commit | 0ed38f17198dd69a5ce6fe703aa6f00efab1ed60 (patch) | |
tree | ca6d9a09a2d7dd79b97fde526f202f7ec7f27eb9 /src/mongo/installer/msi | |
parent | 025d4f4fe61efd1fb6f0005be20cb45a004093d1 (diff) | |
download | mongo-0ed38f17198dd69a5ce6fe703aa6f00efab1ed60.tar.gz |
SERVER-32415 Fix typo on MongoDB in Compass Installer
Closes #1194
Signed-off-by: Mark Benvenuto <mark.benvenuto@mongodb.com>
(cherry picked from commit b3033d477f2356d17a0e5263775a0e2dfce75ede)
Diffstat (limited to 'src/mongo/installer/msi')
-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 779109f9a72..28f78b53ad4 100644 --- a/src/mongo/installer/msi/wxs/UIFragment.wxs +++ b/src/mongo/installer/msi/wxs/UIFragment.wxs @@ -44,7 +44,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" />
|