From 7e3271dfad8401078daa97c7a835c46bebdb32f5 Mon Sep 17 00:00:00 2001 From: Prince Kannah Date: Thu, 4 Feb 2016 17:05:25 -0700 Subject: [PATCH] Typo: Change nane --> name Fix the typo in the java doc of `S3ObjectSummary.getBucketName()` from 'nane' --> 'name'. --- .../integration/aws/s3/core/S3ObjectSummary.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/springframework/integration/aws/s3/core/S3ObjectSummary.java b/src/main/java/org/springframework/integration/aws/s3/core/S3ObjectSummary.java index b287119..3344e9a 100644 --- a/src/main/java/org/springframework/integration/aws/s3/core/S3ObjectSummary.java +++ b/src/main/java/org/springframework/integration/aws/s3/core/S3ObjectSummary.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2013 the original author or authors. + * Copyright 2002-2016 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -28,7 +28,7 @@ import java.util.Date; public interface S3ObjectSummary { /** - * Gets the Bucket nane in which the object is kept on S3 + * Gets the Bucket name in which the object is kept on S3 */ String getBucketName(); @@ -51,4 +51,5 @@ public interface S3ObjectSummary { * Gets the Date the object was last modified */ Date getLastModified(); + }