From 2cea3524fb4bbf3d1ce436b24448d3582a349905 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stevo=20Slavi=C4=87?= Date: Fri, 12 May 2017 16:45:38 +0200 Subject: [PATCH] Fix typo in javadoc This PR fixes a typo in TestRestTemplate class javadoc. --- .../springframework/boot/test/web/client/TestRestTemplate.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-test/src/main/java/org/springframework/boot/test/web/client/TestRestTemplate.java b/spring-boot-test/src/main/java/org/springframework/boot/test/web/client/TestRestTemplate.java index f206a77a9cad..09059acc41d8 100644 --- a/spring-boot-test/src/main/java/org/springframework/boot/test/web/client/TestRestTemplate.java +++ b/spring-boot-test/src/main/java/org/springframework/boot/test/web/client/TestRestTemplate.java @@ -73,7 +73,7 @@ * If you are using the * {@link org.springframework.boot.test.context.SpringBootTest @SpringBootTest} * annotation, a {@link TestRestTemplate} is automatically available and can be - * {@code @Autowired} into you test. If you need customizations (for example to adding + * {@code @Autowired} into your test. If you need customizations (for example to adding * additional message converters) use a {@link RestTemplateBuilder} {@code @Bean}. * * @author Dave Syer