[ja] fix typo

This commit is contained in:
Yoshiyuki Hirano
2017-03-26 02:15:42 +09:00
parent f26f99b79d
commit c49c78f42c

View File

@@ -24,7 +24,7 @@ Go言語の`crypto`では対称鍵暗号アルゴリズムをサポートして
func main() {
// 暗号化したい文字列
plaintext := []byte("My name is Astaxie")
// 暗号化された文字列を渡すと、plaintは渡された文字列になります。
// 暗号化された文字列を渡すと、plaintextは渡された文字列になります。
if len(os.Args) > 1 {
plaintext = []byte(os.Args[1])
}