exportor -> exporter (#3678)

This commit is contained in:
Piotr Kiełkowicz 2022-09-20 09:40:58 +02:00 committed by GitHub
parent a6bdf63be7
commit 988a27be05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -44,8 +44,8 @@ namespace OpenTelemetry.Metrics
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];