From 62941544eab9c4bf1b062d29cc18e5086757b481 Mon Sep 17 00:00:00 2001 From: Ty Overby Date: Tue, 10 Oct 2017 16:41:27 -0700 Subject: [PATCH] rename doc functions (#208) * fix up docs --- .gitignore | 2 ++ src/lib.rs | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 9208baf..19231ce 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,5 @@ *.swp *.swo .cargo +.vscode +rls*.log diff --git a/src/lib.rs b/src/lib.rs index c1c736b..c383bc6 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,7 +4,7 @@ //! serialization strategy. //! //! There are simple functions for encoding to `Vec` and decoding from -//! `&[u8]`, but the meat of the library is the `encode_into` and `decode_from` +//! `&[u8]`, but the meat of the library is the `serialize_into` and `deserialize_from` //! functions which respectively allow encoding into a `std::io::Writer` //! and decoding from a `std::io::Buffer`. //!