Fix Javadoc typo

This commit is contained in:
Rossen Stoyanchev 2014-04-30 10:06:32 -04:00
parent bd85c916eb
commit 209bb4ee4b
1 changed files with 5 additions and 5 deletions

View File

@ -19,7 +19,6 @@ package org.springframework.web.socket.client.standard;
import javax.websocket.ContainerProvider;
import javax.websocket.Session;
import javax.websocket.WebSocketContainer;
import javax.websocket.server.ServerEndpoint;
import org.springframework.beans.BeansException;
import org.springframework.beans.factory.BeanFactory;
@ -31,10 +30,11 @@ import org.springframework.web.socket.client.ConnectionManagerSupport;
import org.springframework.web.socket.handler.BeanCreatingHandlerProvider;
/**
* A WebSocket connection manager that is given a URI, a {@link ServerEndpoint}-annotated
* endpoint, connects to a WebSocket server through the {@link #start()} and
* {@link #stop()} methods. If {@link #setAutoStartup(boolean)} is set to {@code true}
* this will be done automatically when the Spring ApplicationContext is refreshed.
* A WebSocket connection manager that is given a URI, a
* {@link javax.websocket.ClientEndpoint}-annotated endpoint, connects to a
* WebSocket server through the {@link #start()} and {@link #stop()} methods.
* If {@link #setAutoStartup(boolean)} is set to {@code true} this will be
* done automatically when the Spring ApplicationContext is refreshed.
*
* @author Rossen Stoyanchev
* @since 4.0