From 9f256f0929a5370eaefa3ddc6f9e7b36379367bc Mon Sep 17 00:00:00 2001 From: Jackson Sandland Date: Fri, 30 Mar 2018 13:10:27 -0700 Subject: [PATCH] 94 - snakecase mod names --- src/accountant_skel.rs | 2 +- src/accountant_stub.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/accountant_skel.rs b/src/accountant_skel.rs index 924385df92..b8b1226eb7 100644 --- a/src/accountant_skel.rs +++ b/src/accountant_skel.rs @@ -1,4 +1,4 @@ -//! The `accountantSkel` module is a microservice that exposes the high-level +//! The `accountant_skel` module is a microservice that exposes the high-level //! Accountant API to the network. Its message encoding is currently //! in flux. Clients should use AccountantStub to interact with it. diff --git a/src/accountant_stub.rs b/src/accountant_stub.rs index 65aae7b713..1c3c36d2fe 100644 --- a/src/accountant_stub.rs +++ b/src/accountant_stub.rs @@ -1,4 +1,4 @@ -//! The `accountantStub` module is a client-side object that interfaces with a server-side Accountant +//! The `accountant_stub` module is a client-side object that interfaces with a server-side Accountant //! object via the network interface exposed by AccountantSkel. Client code should use //! this object instead of writing messages to the network directly. The binary //! encoding of its messages are unstable and may change in future releases.