Fix typo in Aggregation#explicitBucketHistogram() (#3734)

This commit is contained in:
jack-berg 2021-10-12 21:59:51 -05:00 committed by GitHub
parent 4483aedf40
commit 4ab882ccd2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -73,7 +73,7 @@ public abstract class Aggregation {
/**
* Aggregates measurements into an explicit bucket histogram using the default bucket boundaries.
*/
public static Aggregation explictBucketHistogram() {
public static Aggregation explicitBucketHistogram() {
return ExplicitBucketHistogramAggregation.DEFAULT;
}
@ -101,6 +101,6 @@ public abstract class Aggregation {
/** Aggregates measurements using the best available Histogram. */
public static Aggregation histogram() {
return explictBucketHistogram();
return explicitBucketHistogram();
}
}