From 717d03a29d95360e938a736fb817aa36843da91e Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Sat, 1 Apr 2023 15:13:07 +0200 Subject: [PATCH] Fix grammar --- .../core/io/support/PropertySourceProcessor.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-core/src/main/java/org/springframework/core/io/support/PropertySourceProcessor.java b/spring-core/src/main/java/org/springframework/core/io/support/PropertySourceProcessor.java index 0374bbab9e..df19941a0b 100644 --- a/spring-core/src/main/java/org/springframework/core/io/support/PropertySourceProcessor.java +++ b/spring-core/src/main/java/org/springframework/core/io/support/PropertySourceProcessor.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2022 the original author or authors. + * Copyright 2002-2023 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. @@ -40,7 +40,7 @@ import org.springframework.util.ReflectionUtils; /** * Contribute {@link PropertySource property sources} to the {@link Environment}. * - *

This class is stateful and merge descriptors with the same name in a + *

This class is stateful and merges descriptors with the same name in a * single {@link PropertySource} rather than creating dedicated ones. * * @author Stephane Nicoll