diff --git a/src/Constants.js b/src/Constants.js
index 31e70c4f4..4279903d1 100644
--- a/src/Constants.js
+++ b/src/Constants.js
@@ -424,8 +424,8 @@ CONSTANTS = {
"print(x)
Prints a value or a variable to the scripts logs (which can be viewed with the 'tail [script]' terminal command ).
" +
"WARNING: Do NOT call print() on an array. The script will crash. You can, however, call print on single elements of an array. For example, if " +
"the variable 'a' is an array, then do NOT call print(a), but it is okay to call print(a[0]).
" +
- "scan()
Returns an array containing the hostnames of all servers that are one node away from the current server. The " +
- "current server is the server on which the script that calls this function is running. The hostnames are strings.
" +
+ "scan(hostname/ip)
Returns an array containing the hostnames of all servers that are one node away from the specified server. " +
+ "The argument must be a string containing the IP or hostname of the target server. The hostnames in the returned array are strings.
" +
"nuke(hostname/ip)
Run NUKE.exe on the target server. NUKE.exe must exist on your home computer. Does NOT work while offline
Example: nuke('foodnstuff');
" +
"brutessh(hostname/ip)
Run BruteSSH.exe on the target server. BruteSSH.exe must exist on your home computer. Does NOT work while offline
Example: brutessh('foodnstuff');
" +
"ftpcrack(hostname/ip)
Run FTPCrack.exe on the target server. FTPCrack.exe must exist on your home computer. Does NOT work while offline
Example: ftpcrack('foodnstuff');
" +