diff --git a/libraries/networking/src/AddressManager.h b/libraries/networking/src/AddressManager.h
index 74ec1c4266..e8793edc1d 100644
--- a/libraries/networking/src/AddressManager.h
+++ b/libraries/networking/src/AddressManager.h
@@ -252,8 +252,8 @@ public slots:
* "127.0.0.1"
or "localhost"
), a file:///
address, a domain name, a named path
* on a domain (starts with "/"
), a position or position and orientation, or a user (starts with
* "@"
).
- * @param {boolean} [fromSuggestions=false] - Set to true
if the address is obtained from the "Explore" app.
- * Helps ensure that the user's location history is correctly maintained.
+ * @param {boolean} [fromSuggestions=false] - Set to true
if the address is obtained from the "Goto" dialog.
+ * Helps ensure that user's location history is correctly maintained.
*/
void handleLookupString(const QString& lookupString, bool fromSuggestions = false);
@@ -390,10 +390,10 @@ signals:
void lookupResultIsNotFound();
/*@jsdoc
- * Triggered when a request is made to go to a URL or IP address.
+ * Triggered when a request is made to go to an IP address.
* @function location.possibleDomainChangeRequired
- * @param {string} domainURL - The URL of the domain.
- * @param {Uuid} domainID - The UUID of the domain to go to. May be "{@link Uuid|Uuid.NULL} if not yet known.
+ * @param {Url} domainURL - URL for domain
+ * @param {Uuid} domainID - The UUID of the domain to go to.
* @returns {Signal}
*/
// No example because this function isn't typically used in scripts.
diff --git a/tools/doxygen/Doxyfile b/tools/doxygen/Doxyfile
index ee7ac1e2e1..ac8136a0c5 100644
--- a/tools/doxygen/Doxyfile
+++ b/tools/doxygen/Doxyfile
@@ -509,7 +509,7 @@ EXTRACT_PACKAGE = NO
# included in the documentation.
# The default value is: NO.
-EXTRACT_STATIC = YES
+EXTRACT_STATIC = NO
# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined
# locally in source files will be included in the documentation. If set to NO,
@@ -794,7 +794,7 @@ CITE_BIB_FILES =
# messages are off.
# The default value is: NO.
-QUIET = YES
+QUIET = NO
# The WARNINGS tag can be used to turn on/off the warning messages that are
# generated to standard error (stderr) by doxygen. If WARNINGS is set to YES
diff --git a/tools/doxygen/README.md b/tools/doxygen/README.md
index 8b8fdc5c26..658d8814ae 100644
--- a/tools/doxygen/README.md
+++ b/tools/doxygen/README.md
@@ -7,6 +7,8 @@
**Doxygen** ≥ 1.9.1 - https://www.doxygen.nl/
+Make a `/build/doxygen/` directory.
+
If you want to run Doxygen from a command prompt, add the Doxygen install's `/bin` directory to your system PATH.