From 16f9994955c0e0afcda0cb12f5aa119eaac06360 Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Sat, 8 Apr 2017 19:19:20 +0200 Subject: [PATCH] Fix AWS code sample in project sample. --- docs/index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/index.html b/docs/index.html index d0614b6d..a7f527b3 100755 --- a/docs/index.html +++ b/docs/index.html @@ -117,11 +117,11 @@ public class MyConfig { public class Example { // inject the actual values - @Value("${aws.access_key} + @Value("${aws.access_key}") private String awsAccessKey; - @Value("${aws.secret_key} - private String awsSecretKeyKey; + @Value("${aws.secret_key}") + private String awsSecretKey; public InputStream getFileFromS3(String filenname) { // …