rspec/rules/S3358/swift/compliant.adoc
Fred Tingaud a3f81b0b6c
Modify rule S3358: LaYC for Nested ternaries
Co-authored-by: Amélie Renard <44666826+amelie-renard-sonarsource@users.noreply.github.com>
2023-06-14 08:47:35 +00:00

14 lines
231 B
Plaintext

[source,swift]
----
func getReadableStatus(job: Job) -> String {
let status: String;
if (job.isRunning) {
status = "Running";
}
else {
status = job.hasErrors ? "Failed" : "Succeeded";
}
return status;
}
----