Skip to content

Commit 7caf394

Browse files
committed
Merge pull request #4806 from izeye/polish-20151218
* pr/4806: Fix typos
2 parents 01d0127 + c09a14a commit 7caf394

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/opentsdb/OpenTsdbGaugeWriter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public class OpenTsdbGaugeWriter implements GaugeWriter {
8080
private OpenTsdbNamingStrategy namingStrategy = new DefaultOpenTsdbNamingStrategy();
8181

8282
/**
83-
* Creates a new {@code OpenTsdbGauageWriter} with the default connect (10 seconds)
83+
* Creates a new {@code OpenTsdbGaugeWriter} with the default connect (10 seconds)
8484
* and read (30 seconds) timeouts.
8585
*/
8686
public OpenTsdbGaugeWriter() {

spring-boot/src/main/java/org/springframework/boot/context/ConfigurationWarningsApplicationContextInitializer.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -133,10 +133,10 @@ protected static class ComponentScanPackageCheck implements Check {
133133
private static final Set<String> PROBLEM_PACKAGES;
134134

135135
static {
136-
Set<String> pacakges = new HashSet<String>();
137-
pacakges.add("org.springframework");
138-
pacakges.add("org");
139-
PROBLEM_PACKAGES = Collections.unmodifiableSet(pacakges);
136+
Set<String> packages = new HashSet<String>();
137+
packages.add("org.springframework");
138+
packages.add("org");
139+
PROBLEM_PACKAGES = Collections.unmodifiableSet(packages);
140140
}
141141

142142
@Override

0 commit comments

Comments
 (0)