Skip to content

Commit

Permalink
fix: replace String -> string
Browse files Browse the repository at this point in the history
  • Loading branch information
mayurkale22 committed Oct 21, 2019
1 parent bf20492 commit dde4d20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/opentelemetry-metrics/src/Metric.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export abstract class Metric<T> implements types.Metric<T> {
protected readonly _disabled: boolean;
protected readonly _logger: types.Logger;
private readonly _metricDescriptor: MetricDescriptor;
private readonly _handles: Map<String, T> = new Map();
private readonly _handles: Map<string, T> = new Map();

constructor(
private readonly _name: string,
Expand Down

0 comments on commit dde4d20

Please sign in to comment.