Skip to content

Commit

Permalink
exportor -> exporter (#3678)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kielek authored Sep 20, 2022
1 parent a6bdf63 commit 988a27b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/OpenTelemetry/Metrics/BaseExportingMetricReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ public BaseExportingMetricReader(BaseExporter<Metric> exporter)

this.exporter = exporter;

var exportorType = exporter.GetType();
var attributes = exportorType.GetCustomAttributes(typeof(ExportModesAttribute), true);
var exporterType = exporter.GetType();
var attributes = exporterType.GetCustomAttributes(typeof(ExportModesAttribute), true);
if (attributes.Length > 0)
{
var attr = (ExportModesAttribute)attributes[attributes.Length - 1];
Expand Down

0 comments on commit 988a27b

Please sign in to comment.