Parcourir la source

Update README.md

KrYounger il y a 6 ans
Parent
révision
a305c903f1
Aucun compte lié à l'adresse email de l'auteur
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2
    2
      README.md

+ 2
- 2
README.md Voir le fichier

@@ -39,11 +39,11 @@ In other words, two successive applications of ROT13 restore the original text (
39 39
 The transformation can be done using a lookup table, such as the following:
40 40
 
41 41
 ```
42
-// for ROT13('a'/'m')
42
+// for ROT13('a', 'm')
43 43
 Input	ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz
44 44
 Output	NOPQRSTUVWXYZABCDEFGHIJKLM nopqrstuvwxyzabcdefghijklm
45 45
 
46
-// for ROT13('a'/'d')
46
+// for ROT13('a', 'd')
47 47
 Input	ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz
48 48
 Output	EFGHIJKLMNOPQRSTUVWXYZABCD efghijklmnopqrstuvwxyzabcd
49 49
 ```