diff --git a/appveyor.yml b/appveyor.yml
index 4c28a15a34..5d01d00605 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -96,7 +96,7 @@ build_script:
echo "Make docker stubs"
STUB_OUTPUT=$(pwd)/docker-stub
docker run -i --rm --name setup -v $STUB_OUTPUT:/bitwarden bitwarden/setup:dev \
- dotnet Setup.dll -stub 1 -install 1 -domain bitwarden.company.com -os lin
+ dotnet Setup.dll -stub 1 -install 1 -domain bitwarden.example.com -os lin
sudo chown -R appveyor:appveyor $STUB_OUTPUT
rm -rf $STUB_OUTPUT/letsencrypt
rm $STUB_OUTPUT/env/uid.env $STUB_OUTPUT/config.yml
diff --git a/scripts/run.ps1 b/scripts/run.ps1
index 1552019798..2d51d598ed 100644
--- a/scripts/run.ps1
+++ b/scripts/run.ps1
@@ -36,7 +36,7 @@ if("${env:BITWARDEN_CERTBOT_HTTPS_PORT}" -ne "") {
function Install() {
[string]$letsEncrypt = "n"
Write-Host "(!) " -f cyan -nonewline
- [string]$domain = $( Read-Host "Enter the domain name for your Bitwarden instance (ex. bitwarden.company.com)" )
+ [string]$domain = $( Read-Host "Enter the domain name for your Bitwarden instance (ex. bitwarden.example.com)" )
echo ""
if ($domain -eq "") {
diff --git a/scripts/run.sh b/scripts/run.sh
index d2dab6cccf..84c1d7d40f 100644
--- a/scripts/run.sh
+++ b/scripts/run.sh
@@ -62,7 +62,7 @@ fi
function install() {
LETS_ENCRYPT="n"
- echo -e -n "${CYAN}(!)${NC} Enter the domain name for your Bitwarden instance (ex. bitwarden.company.com): "
+ echo -e -n "${CYAN}(!)${NC} Enter the domain name for your Bitwarden instance (ex. bitwarden.example.com): "
read DOMAIN
echo ""
diff --git a/src/Core/Models/Api/Public/Request/MemberCreateRequestModel.cs b/src/Core/Models/Api/Public/Request/MemberCreateRequestModel.cs
index 3565d2d9c6..fb1769e623 100644
--- a/src/Core/Models/Api/Public/Request/MemberCreateRequestModel.cs
+++ b/src/Core/Models/Api/Public/Request/MemberCreateRequestModel.cs
@@ -9,7 +9,7 @@ namespace Bit.Core.Models.Api.Public
///
/// The member's email address.
///
- /// jsmith@company.com
+ /// jsmith@example.com
[Required]
[EmailAddress]
public string Email { get; set; }
diff --git a/src/Core/Models/Api/Public/Response/MemberResponseModel.cs b/src/Core/Models/Api/Public/Response/MemberResponseModel.cs
index c7a2c093e6..1dfd04d843 100644
--- a/src/Core/Models/Api/Public/Response/MemberResponseModel.cs
+++ b/src/Core/Models/Api/Public/Response/MemberResponseModel.cs
@@ -64,7 +64,7 @@ namespace Bit.Core.Models.Api.Public
///
/// The member's email address.
///
- /// jsmith@company.com
+ /// jsmith@example.com
[Required]
public string Email { get; set; }
///