Skip to content

Commit 9b87ea0

Browse files
joshlongrstoyanchev
authored andcommitted
fix spelling of word 'recommendation'
this PR fixes the spelling error for the word 'recommendation'
1 parent 89717e1 commit 9b87ea0

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

spring-web/src/main/java/org/springframework/http/HttpHeaders.java

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@
6161
* @author Sebastien Deleuze
6262
* @author Brian Clozel
6363
* @author Juergen Hoeller
64+
* @author Josh Long
6465
* @since 3.0
6566
*/
6667
public class HttpHeaders implements MultiValueMap<String, String>, Serializable {
@@ -94,42 +95,42 @@ public class HttpHeaders implements MultiValueMap<String, String>, Serializable
9495
public static final String ACCEPT_RANGES = "Accept-Ranges";
9596
/**
9697
* The CORS {@code Access-Control-Allow-Credentials} response header field name.
97-
* @see <a href="http://www.w3.org/TR/cors/">CORS W3C recommandation</a>
98+
* @see <a href="http://www.w3.org/TR/cors/">CORS W3C recommendation</a>
9899
*/
99100
public static final String ACCESS_CONTROL_ALLOW_CREDENTIALS = "Access-Control-Allow-Credentials";
100101
/**
101102
* The CORS {@code Access-Control-Allow-Headers} response header field name.
102-
* @see <a href="http://www.w3.org/TR/cors/">CORS W3C recommandation</a>
103+
* @see <a href="http://www.w3.org/TR/cors/">CORS W3C recommendation</a>
103104
*/
104105
public static final String ACCESS_CONTROL_ALLOW_HEADERS = "Access-Control-Allow-Headers";
105106
/**
106107
* The CORS {@code Access-Control-Allow-Methods} response header field name.
107-
* @see <a href="http://www.w3.org/TR/cors/">CORS W3C recommandation</a>
108+
* @see <a href="http://www.w3.org/TR/cors/">CORS W3C recommendation</a>
108109
*/
109110
public static final String ACCESS_CONTROL_ALLOW_METHODS = "Access-Control-Allow-Methods";
110111
/**
111112
* The CORS {@code Access-Control-Allow-Origin} response header field name.
112-
* @see <a href="http://www.w3.org/TR/cors/">CORS W3C recommandation</a>
113+
* @see <a href="http://www.w3.org/TR/cors/">CORS W3C recommendation</a>
113114
*/
114115
public static final String ACCESS_CONTROL_ALLOW_ORIGIN = "Access-Control-Allow-Origin";
115116
/**
116117
* The CORS {@code Access-Control-Expose-Headers} response header field name.
117-
* @see <a href="http://www.w3.org/TR/cors/">CORS W3C recommandation</a>
118+
* @see <a href="http://www.w3.org/TR/cors/">CORS W3C recommendation</a>
118119
*/
119120
public static final String ACCESS_CONTROL_EXPOSE_HEADERS = "Access-Control-Expose-Headers";
120121
/**
121122
* The CORS {@code Access-Control-Max-Age} response header field name.
122-
* @see <a href="http://www.w3.org/TR/cors/">CORS W3C recommandation</a>
123+
* @see <a href="http://www.w3.org/TR/cors/">CORS W3C recommendation</a>
123124
*/
124125
public static final String ACCESS_CONTROL_MAX_AGE = "Access-Control-Max-Age";
125126
/**
126127
* The CORS {@code Access-Control-Request-Headers} request header field name.
127-
* @see <a href="http://www.w3.org/TR/cors/">CORS W3C recommandation</a>
128+
* @see <a href="http://www.w3.org/TR/cors/">CORS W3C recommendation</a>
128129
*/
129130
public static final String ACCESS_CONTROL_REQUEST_HEADERS = "Access-Control-Request-Headers";
130131
/**
131132
* The CORS {@code Access-Control-Request-Method} request header field name.
132-
* @see <a href="http://www.w3.org/TR/cors/">CORS W3C recommandation</a>
133+
* @see <a href="http://www.w3.org/TR/cors/">CORS W3C recommendation</a>
133134
*/
134135
public static final String ACCESS_CONTROL_REQUEST_METHOD = "Access-Control-Request-Method";
135136
/**

0 commit comments

Comments
 (0)