From a139a0052d7939ce37bb711ecc615cf4fe3c741a Mon Sep 17 00:00:00 2001 From: Kyle Anderson Date: Fri, 7 Jul 2017 16:46:53 -0700 Subject: [PATCH] Fix Typo in Reference Docs --- docs/manual/src/docs/asciidoc/index.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/manual/src/docs/asciidoc/index.adoc b/docs/manual/src/docs/asciidoc/index.adoc index 2420fcadd1..6aaf08d746 100644 --- a/docs/manual/src/docs/asciidoc/index.adoc +++ b/docs/manual/src/docs/asciidoc/index.adoc @@ -6651,7 +6651,7 @@ Use the KeyGenerators.secureRandom factory methods to generate a BytesKeyGenerat [source,java] ---- -KeyGenerator generator = KeyGenerators.secureRandom(); +BytesKeyGenerator generator = KeyGenerators.secureRandom(); byte[] key = generator.generateKey(); ----