From 2fb04883ca5cf3a76fc01acdc84d233cefeecc5e Mon Sep 17 00:00:00 2001 From: Vedran Pavic Date: Thu, 19 Jul 2018 11:21:52 +0200 Subject: [PATCH] Polish WebSession javadoc Issue: SPR-17051 --- .../main/java/org/springframework/web/server/WebSession.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-web/src/main/java/org/springframework/web/server/WebSession.java b/spring-web/src/main/java/org/springframework/web/server/WebSession.java index b35d0b82b1cd..f4f7021c27f4 100644 --- a/spring-web/src/main/java/org/springframework/web/server/WebSession.java +++ b/spring-web/src/main/java/org/springframework/web/server/WebSession.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2017 the original author or authors. + * Copyright 2002-2018 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. @@ -127,7 +127,7 @@ default T getAttributeOrDefault(String name, T defaultValue) { * *

Note that this method is not intended for direct use by applications. * Instead it is automatically invoked just before the response is - * committed is committed. + * committed. * @return {@code Mono} to indicate completion with success or error */ Mono save();