Skip to content

Commit 988a27b

Browse files
authored
exportor -> exporter (#3678)
1 parent a6bdf63 commit 988a27b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/OpenTelemetry/Metrics/BaseExportingMetricReader.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ public BaseExportingMetricReader(BaseExporter<Metric> exporter)
4444

4545
this.exporter = exporter;
4646

47-
var exportorType = exporter.GetType();
48-
var attributes = exportorType.GetCustomAttributes(typeof(ExportModesAttribute), true);
47+
var exporterType = exporter.GetType();
48+
var attributes = exporterType.GetCustomAttributes(typeof(ExportModesAttribute), true);
4949
if (attributes.Length > 0)
5050
{
5151
var attr = (ExportModesAttribute)attributes[attributes.Length - 1];

0 commit comments

Comments
 (0)