Преглед изворни кода

Merge pull request #8974 from gyuho/indentation

clientv3: fix indentation in doc.go
Gyuho Lee пре 8 година
родитељ
комит
8b13f7ff12
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      clientv3/doc.go

+ 2 - 2
clientv3/doc.go

@@ -59,9 +59,9 @@
 //
 //
 // etcd client returns 3 types of errors:
 // etcd client returns 3 types of errors:
 //
 //
-//	1. context error: canceled or deadline exceeded.
+//  1. context error: canceled or deadline exceeded.
 //  2. gRPC status error: e.g. when clock drifts in server-side before client's context deadline exceeded.
 //  2. gRPC status error: e.g. when clock drifts in server-side before client's context deadline exceeded.
-//	3. gRPC error: see https://github.com/coreos/etcd/blob/master/etcdserver/api/v3rpc/rpctypes/error.go
+//  3. gRPC error: see https://github.com/coreos/etcd/blob/master/etcdserver/api/v3rpc/rpctypes/error.go
 //
 //
 // Here is the example code to handle client errors:
 // Here is the example code to handle client errors:
 //
 //