diff --git a/src/core/lib/Present.mjs b/src/core/lib/Present.mjs
index 72f8e9ef..ffb6bf57 100644
--- a/src/core/lib/Present.mjs
+++ b/src/core/lib/Present.mjs
@@ -3,7 +3,7 @@
* ECB and CBC block modes.
*
* PRESENT is an ultra-lightweight block cipher designed for constrained environments.
- * Standardized in ISO/IEC 29192-2:2019.
+ * Standardised in ISO/IEC 29192-2:2019.
*
* Reference: "PRESENT: An Ultra-Lightweight Block Cipher"
* https://link.springer.com/chapter/10.1007/978-3-540-74735-2_31
diff --git a/src/core/operations/PRESENTDecrypt.mjs b/src/core/operations/PRESENTDecrypt.mjs
index 16629c51..54d62995 100644
--- a/src/core/operations/PRESENTDecrypt.mjs
+++ b/src/core/operations/PRESENTDecrypt.mjs
@@ -23,7 +23,7 @@ class PRESENTDecrypt extends Operation {
this.name = "PRESENT Decrypt";
this.module = "Ciphers";
- this.description = "PRESENT is an ultra-lightweight block cipher designed for constrained environments such as RFID tags and sensor networks. It operates on 64-bit blocks and supports 80-bit or 128-bit keys with 31 rounds. Standardized in ISO/IEC 29192-2:2019.
When using CBC mode, the PKCS#7 padding scheme is used.";
+ this.description = "PRESENT is an ultra-lightweight block cipher designed for constrained environments such as RFID tags and sensor networks. It operates on 64-bit blocks and supports 80-bit or 128-bit keys with 31 rounds. Standardised in ISO/IEC 29192-2:2019.
When using CBC mode, the PKCS#7 padding scheme is used.";
this.infoURL = "https://wikipedia.org/wiki/PRESENT_(cipher)";
this.inputType = "string";
this.outputType = "string";
diff --git a/src/core/operations/PRESENTEncrypt.mjs b/src/core/operations/PRESENTEncrypt.mjs
index f5d82aad..2a02c3d3 100644
--- a/src/core/operations/PRESENTEncrypt.mjs
+++ b/src/core/operations/PRESENTEncrypt.mjs
@@ -23,7 +23,7 @@ class PRESENTEncrypt extends Operation {
this.name = "PRESENT Encrypt";
this.module = "Ciphers";
- this.description = "PRESENT is an ultra-lightweight block cipher designed for constrained environments such as RFID tags and sensor networks. It operates on 64-bit blocks and supports 80-bit or 128-bit keys with 31 rounds. Standardized in ISO/IEC 29192-2:2019.
When using CBC mode, the PKCS#7 padding scheme is used.";
+ this.description = "PRESENT is an ultra-lightweight block cipher designed for constrained environments such as RFID tags and sensor networks. It operates on 64-bit blocks and supports 80-bit or 128-bit keys with 31 rounds. Standardised in ISO/IEC 29192-2:2019.
When using CBC mode, the PKCS#7 padding scheme is used.";
this.infoURL = "https://wikipedia.org/wiki/PRESENT_(cipher)";
this.inputType = "string";
this.outputType = "string";