aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDeterminant <tederminant@gmail.com>2018-07-23 19:47:41 -0400
committerDeterminant <tederminant@gmail.com>2018-07-23 19:47:41 -0400
commitbfe0096cef3e7827afc2c8a1718255917e3e7937 (patch)
treeed60420fcd52a72f007e1497de3db2beee193800
parent70995d2a4528404a9e4be7b924ace8e49b9061f2 (diff)
...
-rw-r--r--README.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/README.rst b/README.rst
index e88de02..6956074 100644
--- a/README.rst
+++ b/README.rst
@@ -12,16 +12,16 @@ Features
relies on libevent and libcrypo (OpenSSL, for SHA256 purpose).
- Clarity. With moderate use of C++ template and new features, the vast
- majority of the code is self-documented.
+ majority of the code is self-documenting.
- Layered design. You can use network abstraction from the lowest socket
connection level to the highest P2P network level.
-- Performance. The implementation strives to incur very little in processing
+- Performance. The implementation strives to incur very little overhead in processing
network I/O, and avoid unnecessary memory copies thanks to the move semantics.
-- Utilities. The libray also provies with some useful gadgets, such as command
- line parser, libevent abstraction, etc.
+- Utilities. The library also provides with some useful gadgets, such as
+ command-line parser, libevent abstraction, etc.
Dependencies
------------
@@ -31,8 +31,8 @@ Dependencies
- libevent
- libcrypto
-Example
--------
+Example (MsgNetwork layer)
+--------------------------
.. code-block:: cpp