Skip to content

Commit 7f74794

Browse files
Ahlichristophstrobl
authored andcommitted
Fix inconsistent strong tag usage in javadoc.
Closes: #4177
1 parent 238d8c5 commit 7f74794

15 files changed

+18
-18
lines changed

spring-data-mongodb/src/main/java/org/springframework/data/mongodb/config/MongoConfigurationSupport.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ protected FieldNamingStrategy fieldNamingStrategy() {
206206
* {@link org.springframework.data.mongodb.core.index.IndexDefinition} from the entity or not.
207207
*
208208
* @return {@literal false} by default. <br />
209-
* <strong>INFO</strong>: As of 3.x the default is set to {@literal false}; In 2.x it was {@literal true}.
209+
* <strong>INFO:</strong> As of 3.x the default is set to {@literal false}; In 2.x it was {@literal true}.
210210
* @since 2.2
211211
*/
212212
protected boolean autoIndexCreation() {

spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/CollectionOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ public static CollectionOptions emitChangedRevisions() {
114114

115115
/**
116116
* Create new {@link CollectionOptions} with already given settings and capped set to {@literal true}. <br />
117-
* <strong>NOTE</strong> Using capped collections requires defining {@link #size(long)}.
117+
* <strong>NOTE:</strong> Using capped collections requires defining {@link #size(long)}.
118118
*
119119
* @return new {@link CollectionOptions}.
120120
* @since 2.0

spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/ExecutableRemoveOperation.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ interface TerminatingRemove<T> {
7676

7777
/**
7878
* Remove and return all matching documents. <br/>
79-
* <strong>NOTE</strong> The entire list of documents will be fetched before sending the actual delete commands.
79+
* <strong>NOTE:</strong> The entire list of documents will be fetched before sending the actual delete commands.
8080
* Also, {@link org.springframework.context.ApplicationEvent}s will be published for each and every delete
8181
* operation.
8282
*

spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/ReactiveRemoveOperation.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ interface TerminatingRemove<T> {
6969

7070
/**
7171
* Remove and return all matching documents. <br/>
72-
* <strong>NOTE</strong> The entire list of documents will be fetched before sending the actual delete commands.
72+
* <strong>NOTE:</strong> The entire list of documents will be fetched before sending the actual delete commands.
7373
* Also, {@link org.springframework.context.ApplicationEvent}s will be published for each and every delete
7474
* operation.
7575
*

spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/DateOperators.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ public static DateFromString dateFromString(String value) {
159159
* +/-[hh], e.g. "+03"</td>
160160
* </tr>
161161
* </table>
162-
* <strong>NOTE: </strong>Support for timezones in aggregations Requires MongoDB 3.6 or later.
162+
* <strong>NOTE:</strong> Support for timezones in aggregations Requires MongoDB 3.6 or later.
163163
*
164164
* @author Christoph Strobl
165165
* @author Mark Paluch

spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/convert/LazyLoadingProxyFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747

4848
/**
4949
* {@link ProxyFactory} to create a proxy for {@link MongoPersistentProperty#getType()} to resolve a reference lazily.
50-
* <strong>NOTE</strong> This class is intended for internal usage only.
50+
* <strong>NOTE:</strong> This class is intended for internal usage only.
5151
*
5252
* @author Christoph Strobl
5353
* @author Mark Paluch

spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/index/TextIndexDefinition.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ public TextIndexDefinitionBuilder named(String name) {
244244

245245
/**
246246
* Define the index to span all fields using wildcard. <br/>
247-
* <strong>NOTE</strong> {@link TextIndexDefinition} cannot contain any other fields when defined with wildcard.
247+
* <strong>NOTE:</strong> {@link TextIndexDefinition} cannot contain any other fields when defined with wildcard.
248248
*
249249
* @return
250250
*/

spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/index/WildcardIndex.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public WildcardIndex() {}
6161
/**
6262
* Create a new instance of {@link WildcardIndex} for the given {@literal path}. If no {@literal path} is provided the
6363
* index will be considered a root one using {@code $**}. <br />
64-
* <strong>NOTE</strong> {@link #wildcardProjectionInclude(String...)}, {@link #wildcardProjectionExclude(String...)}
64+
* <strong>NOTE:</strong> {@link #wildcardProjectionInclude(String...)}, {@link #wildcardProjectionExclude(String...)}
6565
* can only be used for top level index definitions having an {@literal empty} or {@literal null} path.
6666
*
6767
* @param path can be {@literal null}. If {@literal null} all fields will be indexed.

spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/index/WildcardIndexed.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@
119119
/**
120120
* Explicitly specify sub fields to be in-/excluded as a {@link org.bson.Document#parse(String) prasable} String.
121121
* <br />
122-
* <strong>NOTE: </strong>Can only be applied on root level documents.
122+
* <strong>NOTE:</strong> Can only be applied on root level documents.
123123
*
124124
* @return empty by default.
125125
*/

spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/mapping/Field.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
* {@literal null} values are not written to the target {@code Document}. Setting the value to {@link Write#ALWAYS}
7373
* explicitly adds an entry for the given field holding {@literal null} as a value {@code 'fieldName' : null }.
7474
* <br />
75-
* <strong>NOTE</strong>Setting the value to {@link Write#ALWAYS} may lead to increased document size.
75+
* <strong>NOTE:</strong> Setting the value to {@link Write#ALWAYS} may lead to increased document size.
7676
*
7777
* @return {@link Write#NON_NULL} by default.
7878
* @since 3.3

0 commit comments

Comments
 (0)