aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--jsonrpc/README.md2
-rw-r--r--jsonrpc/src/lib.rs6
3 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index aa18375..8e0712f 100644
--- a/README.md
+++ b/README.md
@@ -13,7 +13,7 @@ each new implementation reintroduces potential weaknesses.
Karyon provides developers with the components and tools needed to create
decentralized apps. By offering a robust infrastructure, Karyon simplifies the
complexities associated with building p2p apps. Karyon's primary goal
-is to make the process of decentralization more achievable and efficient for
+is to make decentralization more achievable and efficient for
developers everywhere, pushing for a future where software is more open,
secure, and free from central control.
diff --git a/jsonrpc/README.md b/jsonrpc/README.md
index 98c18e1..ca33370 100644
--- a/jsonrpc/README.md
+++ b/jsonrpc/README.md
@@ -12,7 +12,7 @@ features:
## Example
-```
+```rust
use std::sync::Arc;
use serde_json::Value;
diff --git a/jsonrpc/src/lib.rs b/jsonrpc/src/lib.rs
index 1410a62..4ec03cc 100644
--- a/jsonrpc/src/lib.rs
+++ b/jsonrpc/src/lib.rs
@@ -1,9 +1,9 @@
//! A fast and lightweight async implementation of [JSON-RPC
//! 2.0](https://www.jsonrpc.org/specification).
-//!
-//! features:
+//!
+//! features:
//! - Supports TCP, TLS, WebSocket, and Unix protocols.
-//! - Uses smol(async-std) as the async runtime, but also supports tokio via
+//! - Uses smol(async-std) as the async runtime, but also supports tokio via
//! the `tokio` feature.
//! - Allows registration of multiple services (structs) of different types on a
//! single server.