diff --git a/docs/learning_grpc.md b/docs/learning_grpc.md
index 8078703..da0418d 100644
--- a/docs/learning_grpc.md
+++ b/docs/learning_grpc.md
@@ -12,10 +12,7 @@ Remote Procedure Calls.
An idea to extend transfer of control and transmission of data from one machine to another.
-
-http://birrell.org/andrew/papers/ImplementingRPC.pdf
-
-
+[http://birrell.org/andrew/papers/ImplementingRPC.pdf](http://birrell.org/andrew/papers/ImplementingRPC.pdf)
note:
@@ -35,11 +32,10 @@ Things were shared in plain non secured text.
[1] WHITE, J. E. A high-level framework for network-based resource sharing. In Proc. National Computer Conference, (June 1976).
---
-
-
-http://birrell.org/andrew/papers/ImplementingRPC.pdf
-
+
+
+[http://birrell.org/andrew/papers/ImplementingRPC.pdf](http://birrell.org/andrew/papers/ImplementingRPC.pdf)
note:
@@ -68,17 +64,11 @@ service PhoneService {
}
```
-
Codegen tools will generate gRPC stubs from IDL code -
-An example of Thrift, an IDL used in Facebook's RPC framework -
- -https://github.com/facebook/fbthrift - +[https://github.com/facebook/fbthrift](https://github.com/facebook/fbthrift) note: @@ -97,9 +87,7 @@ In the paper mentioned above, they wrote the interface using the Mesa interface *gRPC is a modern open source high performance Remote Procedure Call (RPC) framework that can run in any environment.* - -https://grpc.io/ - +[https://grpc.io/](https://grpc.io/) note: @@ -156,9 +144,7 @@ Key-value pairs of data used to provide additional information about a call. Implemented using HTTP/2 headers. - -https://github.com/grpc/grpc/blob/master/doc/PROTOCOL-HTTP2.md - +[https://github.com/grpc/grpc/blob/master/doc/PROTOCOL-HTTP2.md](https://github.com/grpc/grpc/blob/master/doc/PROTOCOL-HTTP2.md) note: @@ -295,9 +281,7 @@ note: - **Editor integration** - And more! - -https://buf.build/product/cli - +[https://buf.build/product/cli](https://buf.build/product/cli) note: @@ -305,26 +289,24 @@ Explain that it builds on top of protoc. Be very short here, just mention the to --- -## gRPC in the Rust ecosystem +# gRPC in the Rust ecosystem -
+
:heart:
-This definition is provided by the official gRPC docs, each language runtime might implement it or not. -
- -https://github.com/grpc/grpc/blob/master/doc/health-checking.md - +[https://github.com/grpc/grpc/blob/master/doc/health-checking.md](https://github.com/grpc/grpc/blob/master/doc/health-checking.md) --- ## Enabling the health service @@ -631,7 +607,7 @@ Timeout -> SSRHL -> Tracing -> SSRHL -> Auth -> Starsky service ## Building a layered service -