@@ -84,22 +84,22 @@ static constexpr const char *kCicdPipelineTaskRunUrlFull = "cicd.pipeline.task.r
8484static constexpr const char *kCicdPipelineTaskType = " cicd.pipeline.task.type" ;
8585
8686/* *
87- The name of a component of the CICD system.
87+ The name of a component of the CI/CD system.
8888 */
8989static constexpr const char *kCicdSystemComponent = " cicd.system.component" ;
9090
9191/* *
92- The unique identifier of a worker within a CICD system.
92+ The unique identifier of a worker within a CI/CD system.
9393 */
9494static constexpr const char *kCicdWorkerId = " cicd.worker.id" ;
9595
9696/* *
97- The name of a worker within a CICD system.
97+ The name of a worker within a CI/CD system.
9898 */
9999static constexpr const char *kCicdWorkerName = " cicd.worker.name" ;
100100
101101/* *
102- The state of a CICD worker / agent.
102+ The state of a CI/CD worker / agent.
103103 */
104104static constexpr const char *kCicdWorkerState = " cicd.worker.state" ;
105105
@@ -142,7 +142,7 @@ static constexpr const char *kSuccess = "success";
142142static constexpr const char *kFailure = " failure" ;
143143
144144/* *
145- The pipeline run failed due to an error in the CICD system, eg. due to the worker being killed.
145+ The pipeline run failed due to an error in the CI/CD system, eg. due to the worker being killed.
146146 */
147147static constexpr const char *kError = " error" ;
148148
@@ -198,7 +198,7 @@ static constexpr const char *kSuccess = "success";
198198static constexpr const char *kFailure = " failure" ;
199199
200200/* *
201- The task run failed due to an error in the CICD system, eg. due to the worker being killed.
201+ The task run failed due to an error in the CI/CD system, eg. due to the worker being killed.
202202 */
203203static constexpr const char *kError = " error" ;
204204
@@ -241,18 +241,18 @@ static constexpr const char *kDeploy = "deploy";
241241namespace CicdWorkerStateValues
242242{
243243/* *
244- The worker is not performing work for the CICD system. It is available to the CICD system to
244+ The worker is not performing work for the CI/CD system. It is available to the CI/CD system to
245245 perform work on (online / idle).
246246 */
247247static constexpr const char *kAvailable = " available" ;
248248
249249/* *
250- The worker is performing work for the CICD system.
250+ The worker is performing work for the CI/CD system.
251251 */
252252static constexpr const char *kBusy = " busy" ;
253253
254254/* *
255- The worker is not available to the CICD system (disconnected / down).
255+ The worker is not available to the CI/CD system (disconnected / down).
256256 */
257257static constexpr const char *kOffline = " offline" ;
258258
0 commit comments