Skip to content

Commit

Permalink
fix(iOS): fix an incorrect compile guard (#12)
Browse files Browse the repository at this point in the history
Fix a spot where iOS was misspelled.

## How to verify that this has the expected result

`make smoke`
  • Loading branch information
beekhc authored Sep 25, 2024
1 parent c2d086b commit bda87b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/Honeycomb/MetricKitSubscriber.swift
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ func reportDiagnostics(payload: MXDiagnosticPayload) {
}
}

#if os(iS)
#if os(iOS)
if #available(iOS 16.0, *) {
logForEach(payload.appLaunchDiagnostics, "app_launch") {
[
Expand Down

0 comments on commit bda87b4

Please sign in to comment.