Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Boris Zbarsky <[email protected]>
  • Loading branch information
nivi-apple and bzbarsky-apple authored Sep 29, 2023
1 parent 6993132 commit 1e3a94b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/darwin/Framework/CHIP/MTRDevice.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ typedef NS_ENUM(NSUInteger, MTRDeviceState) {
/**
* This bitmask is used to specify the type of logs requested from this device.
*
* The logs types are : End User Support, Network Diag and Crash logs.
* The logs types are : End User Support, Network Diagnostics and Crash logs.
*/
typedef NS_OPTIONS(NSUInteger, MTRDiagnosticLogTypes) {
typedef NS_OPTIONS(NSUInteger, MTRDiagnosticLogType) {
MTRDiagnosticLogTypeEndUserSupport = 0, // End user support logs are requested
MTRDiagnosticLogTypeNetworkDiag = 1 << 0, // Network Diag logs are requested
MTRDiagnosticLogTypeNetworkDiagnostics = 1 << 1, // Network Diagnostics logs are requested
MTRDiagnosticLogTypeCrash = 1 << 1, // Crash logs are requested
MTRDiagnosticLogTypesAll = // All the above log types are requested
MTRDiagnosticLogTypeEndUserSupport | MTRDiagnosticLogTypeNetworkDiag | MTRDiagnosticLogTypeCrash,
Expand Down

0 comments on commit 1e3a94b

Please sign in to comment.