GitHub

File tree

  • content/en/docs/v3.5/tutorials

Original file line numberDiff line numberDiff line change

@@ -28,7 +28,7 @@ Here are definations of some key terms used in the [Example](#example) below.

2828

etcdctl txn --help

2929

```

3030
31-

Transactions in etcd allow you to execute multiple operations atomically, ensuring that either all operations are applied or none are. This is crucial for maintaining data consistency when performing related updates. Learn more about transaction in [etcd's Learning](https://etcd.io/docs/v3.6/learning/api/#transaction).

31+

Transactions in etcd allow you to execute multiple operations atomically, ensuring that either all operations are applied or none are. This is crucial for maintaining data consistency when performing related updates. Learn more about transactions in [the API documentation](https://etcd.io/docs/v3.5/learning/api#transaction).

3232
3333

### Example

3434

Read the original on github.com ↗