diff --git a/interface/src/scripting/WindowScriptingInterface.h b/interface/src/scripting/WindowScriptingInterface.h
index dd74358064..8a8dc61ba8 100644
--- a/interface/src/scripting/WindowScriptingInterface.h
+++ b/interface/src/scripting/WindowScriptingInterface.h
@@ -531,8 +531,8 @@ private slots:
signals:
/**jsdoc
- * Triggered when you change the domain you're visiting. Warning: Is not emitted if you go to domain that
- * isn't running.
+ * Triggered when you change the domain you're visiting. Warning: Is not emitted if you go to a domain
+ * that isn't running.
* @function Window.domainChanged
* @param {string} domainURL - The domain's URL.
* @returns {Signal}
diff --git a/libraries/networking/src/AddressManager.h b/libraries/networking/src/AddressManager.h
index b6a18b117d..94eff46bda 100644
--- a/libraries/networking/src/AddressManager.h
+++ b/libraries/networking/src/AddressManager.h
@@ -34,15 +34,16 @@ const QString GET_PLACE = "/api/v1/places/%1";
*
* @namespace location
* @property {Uuid} domainID - A UUID uniquely identifying the domain you're visiting. Is {@link Uuid|Uuid.NULL} if you're not
- * connected to the domain.
+ * connected to the domain or are in a serverless domain.
* Read-only.
* @property {Uuid} domainId - Synonym for domainId
. Read-only. Deprecated: This property
* is deprecated and will soon be removed.
* @property {string} hostname - The name of the domain for your current metaverse address (e.g., "AvatarIsland"
,
- * localhost
, or an IP address).
+ * localhost
, or an IP address). Is blank if you're in a serverless domain.
* Read-only.
* @property {string} href - Your current metaverse address (e.g., "hifi://avatarisland/15,-10,26/0,0,0,1"
)
- * regardless of whether or not you're connected to the domain.
+ * regardless of whether or not you're connected to the domain. Starts with "file:///"
if you're in a
+ * serverless domain.
* Read-only.
* @property {boolean} isConnected - true
if you're connected to the domain in your current href
* metaverse address, otherwise false
.