From c1e51b3dff285ab62fd4424b3d4607b33721f774 Mon Sep 17 00:00:00 2001 From: Jimmy Cuadra Date: Sat, 15 Dec 2018 04:41:08 -0800 Subject: [PATCH] Update docs to mention the health API. --- src/lib.rs | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 52e1125..68aedb6 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -16,11 +16,12 @@ //! HTTPS, and supports authenticating to the etcd cluster via HTTP basic authentication (username //! and password) and/or X.509 client certificates. //! -//! To get basic information about the versions of etcd running in a cluster, use the -//! `Client::versions` method. All other API calls are made by passing a `Client` reference to the -//! functions in the `auth`, `kv`, `members`, and `stats` modules. These modules contain functions -//! for API calls to the authentication and authorization API, the primary key-value store API, the -//! cluster membership API, and statistics API, respectively. +//! To get basic information about the health and versions of etcd running in a cluster, use the +//! `Client::health` and `Client::versions` methods, respectively. All other API calls are made by +//! passing a `Client` reference to the functions in the `auth`, `kv`, `members`, and `stats` +//! modules. These modules contain functions for API calls to the authentication and authorization +//! API, the primary key-value store API, the cluster membership API, and statistics API, +//! respectively. //! //! # Examples //!