summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRob Loach <robloach@gmail.com>2015-02-03 14:21:12 -0500
committerRob Loach <robloach@gmail.com>2015-02-03 14:21:12 -0500
commita379dc7589120904232fd5609bf8c476b467ec1a (patch)
treee75ce6a19c01bc2fd3214eea9ba08eaf365ebaee
parentb850467eda811f6bac4121ad91687915950763fc (diff)
downloadxor-crypt-a379dc7589120904232fd5609bf8c476b467ec1a.zip
xor-crypt-a379dc7589120904232fd5609bf8c476b467ec1a.tar.gz
xor-crypt-a379dc7589120904232fd5609bf8c476b467ec1a.tar.bz2
Fix whitespace
-rw-r--r--xor-crypt.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/xor-crypt.js b/xor-crypt.js
index b30a8a5..c8717f4 100644
--- a/xor-crypt.js
+++ b/xor-crypt.js
@@ -22,12 +22,12 @@
"use strict";
/**
* Encrypt or decrypt a string with the given XOR key.
- * @name xorCrypt
*
+ * @name xorCrypt
* @param {string} str - The string to encrypt.
* @param {int} [key=6] - The XOR key to use when encrypting.
- *
- * @return The resulting XOR'ed string.
+ *
+ * @return The resulting XOR'ed string.
*/
return function(str, key) {
var output = "";