Skip to content

Commit ad98be9

Browse files
typo fixed
1 parent dad4233 commit ad98be9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Sources/InstanaAgent/Instana.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -423,14 +423,14 @@ import Foundation
423423
/// - viewInternalCPMetaMap: Dictionary of keys and values of meta details from CROSS PLATFORM agents
424424
@objc
425425
public static func setViewMetaCPInternal(name: String, viewInternalCPMetaMap: [String: String] = [:]) {
426-
var isAllKeyValid = true
426+
var isAllKeysValid = true
427427
for key in viewInternalCPMetaMap.keys {
428428
if !internalMetaFlutterKeys.contains(key) {
429-
isAllKeyValid = false
429+
isAllKeysValid = false
430430
break
431431
}
432432
}
433-
if isAllKeyValid {
433+
if isAllKeysValid {
434434
Instana.current?.setViewInternal(name: name, viewInternalCPMetaMap: viewInternalCPMetaMap)
435435
}
436436
}

0 commit comments

Comments
 (0)