aboutsummaryrefslogtreecommitdiff
path: root/jsonrpc/README.md
diff options
context:
space:
mode:
authorhozan23 <hozan23@proton.me>2023-12-02 05:10:33 +0300
committerhozan23 <hozan23@proton.me>2023-12-02 05:10:33 +0300
commit8cdc44b24724acf7dd458e59f5ceed4af04574be (patch)
tree1e0aad5a905508c54f7d9be4d4b800b7e8f7d532 /jsonrpc/README.md
parent5111a3d5749625c3d8e26a24a5a32c4da58f18d3 (diff)
Ensure uniform usage of the name `karyon` across all files
Diffstat (limited to 'jsonrpc/README.md')
-rw-r--r--jsonrpc/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/jsonrpc/README.md b/jsonrpc/README.md
index f7ee641..af7dfe2 100644
--- a/jsonrpc/README.md
+++ b/jsonrpc/README.md
@@ -1,4 +1,4 @@
-# karyons jsonrpc
+# karyon jsonrpc
A fast and lightweight async implementation of [JSON-RPC
2.0](https://www.jsonrpc.org/specification), supporting the Tcp and Unix protocols.
@@ -11,7 +11,7 @@ use std::sync::Arc;
use serde_json::Value;
use smol::net::{TcpStream, TcpListener};
-use karyons_jsonrpc::{JsonRPCError, Server, Client, register_service, ServerConfig, ClientConfig};
+use karyon_jsonrpc::{JsonRPCError, Server, Client, register_service, ServerConfig, ClientConfig};
struct HelloWorld {}