소스 검색

Tidied up infoURL in Rail Fence Cipher ops

n1474335 5 년 전
부모
커밋
b045dc37f5
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      src/core/operations/RailFenceCipherDecode.mjs
  2. 1 1
      src/core/operations/RailFenceCipherEncode.mjs

+ 1 - 1
src/core/operations/RailFenceCipherDecode.mjs

@@ -21,7 +21,7 @@ class RailFenceCipherDecode extends Operation {
         this.name = "Rail Fence Cipher Decode";
         this.module = "Ciphers";
         this.description = "Decodes Strings that were created using the Rail fence Cipher provided a key and an offset";
-        this.infoURL = "https://en.wikipedia.org/wiki/Rail_fence_cipher";
+        this.infoURL = "https://wikipedia.org/wiki/Rail_fence_cipher";
         this.inputType = "string";
         this.outputType = "string";
         this.args = [

+ 1 - 1
src/core/operations/RailFenceCipherEncode.mjs

@@ -21,7 +21,7 @@ class RailFenceCipherEncode extends Operation {
         this.name = "Rail Fence Cipher Encode";
         this.module = "Ciphers";
         this.description = "Encodes Strings using the Rail fence Cipher provided a key and an offset";
-        this.infoURL = "https://en.wikipedia.org/wiki/Rail_fence_cipher";
+        this.infoURL = "https://wikipedia.org/wiki/Rail_fence_cipher";
         this.inputType = "string";
         this.outputType = "string";
         this.args = [