Skip to content

Commit db16733

Browse files
Konstantin PavlovKonstantin Pavlov
authored andcommitted
Fix punctuation in Javadoc comments for LoggingMarkers.
Added missing periods to improve consistency and clarity in the Javadoc comments. This change ensures proper formatting and adheres to standard writing conventions. Signed-off-by: Konstantin Pavlov <{ID}+{username}@users.noreply.github.com>
1 parent ef96d7b commit db16733

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

spring-ai-core/src/main/java/org/springframework/ai/util/LoggingMarkers.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public class LoggingMarkers {
2020
* <li>Business processes and logic</li>
2121
* <li>etc.</li>
2222
* </ul>
23-
* Typically, logging this information should be avoided
23+
* Typically, logging this information should be avoided.
2424
*/
2525
public static final Marker SENSITIVE_DATA_MARKER = MarkerFactory.getMarker("SENSITIVE");
2626

@@ -35,7 +35,7 @@ public class LoggingMarkers {
3535
* <li>Trade secrets</li>
3636
* <li>etc.</li>
3737
* </ul>
38-
* Logging of such information is usually prohibited in any circumstances
38+
* Logging of such information is usually prohibited in any circumstances.
3939
*/
4040
public static final Marker RESTRICTED_DATA_MARKER = MarkerFactory.getMarker("RESTRICTED");
4141

@@ -50,7 +50,7 @@ public class LoggingMarkers {
5050
* <li>Compliance-controlled data</li>
5151
* <li>etc.</li>
5252
* </ul>
53-
* Logging of such information should be avoided
53+
* Logging of such information should be avoided.
5454
*/
5555
public static final Marker REGULATED_DATA_MARKER = MarkerFactory.getMarker("REGULATED");
5656

@@ -62,7 +62,7 @@ public class LoggingMarkers {
6262
* <li>Marketing materials</li>
6363
* <li>etc.</li>
6464
* </ul>
65-
* There are no restriction for
65+
* There are no restriction for logging such information.
6666
*/
6767
public static final Marker PUBLIC_DATA_MARKER = MarkerFactory.getMarker("PUBLIC");
6868

0 commit comments

Comments
 (0)