Updated comment style in methods

This commit is contained in:
Prianka Liz Kariat 2023-01-16 13:02:33 +05:30
parent 30533be321
commit 8ecf77f760

View File

@ -72,7 +72,7 @@ using absl::StatusCode;
return YES;
}
/** Converts the absl status message to an NSString. */
// Converts the absl status message to an NSString.
NSString *description = [NSString
stringWithCString:status.ToString(absl::StatusToStringMode::kWithNoExtraData).c_str()
encoding:NSUTF8StringEncoding];
@ -81,8 +81,8 @@ using absl::StatusCode;
MPPTasksErrorCode errorCode = genericErrorCode;
/** Maps the absl::StatusCode to the appropriate MPPTasksErrorCode. Note: MPPTasksErrorCode omits
* absl::StatusCode::kOk. */
// Maps the absl::StatusCode to the appropriate MPPTasksErrorCode. Note: MPPTasksErrorCode omits
// absl::StatusCode::kOk.
switch (status.code()) {
case StatusCode::kCancelled:
errorCode = MPPTasksErrorCodeCancelledError;