aboutsummaryrefslogtreecommitdiff
path: root/src/js/jsbip39.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/js/jsbip39.js')
-rw-r--r--src/js/jsbip39.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js/jsbip39.js b/src/js/jsbip39.js
index 95a2a0e..3230e3b 100644
--- a/src/js/jsbip39.js
+++ b/src/js/jsbip39.js
@@ -149,7 +149,7 @@ var Mnemonic = function(language) {
149 // Set space correctly depending on the language 149 // Set space correctly depending on the language
150 // see https://github.com/bitcoin/bips/blob/master/bip-0039/bip-0039-wordlists.md#japanese 150 // see https://github.com/bitcoin/bips/blob/master/bip-0039/bip-0039-wordlists.md#japanese
151 var space = " "; 151 var space = " ";
152 if (language == "japanese" || language == "korean") { 152 if (language == "japanese") {
153 space = "\u3000"; // ideographic space 153 space = "\u3000"; // ideographic space
154 } 154 }
155 return words.join(space); 155 return words.join(space);