From 6933f45683b7e98515340bf4d1f7ebfa9d35bc98 Mon Sep 17 00:00:00 2001 From: Arsen6331 Date: Sun, 1 May 2022 23:06:27 -0700 Subject: [PATCH] Fix lrpc response line number in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e85fc22..e3f7568 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ The socket uses my [lrpc](https://gitea.arsenm.dev/Arsen6331/lrpc) library for r {"Receiver": "ITD", "Method": "Notify", "Arg": {"title": "title1", "body": "body1"}, "ID": "some-id-here"} ``` -It will return a msgpack response, the format of which can be found [here](https://gitea.arsenm.dev/Arsen6331/lrpc/src/branch/master/internal/types/types.go#L12). The response will have the same ID as was sent in the request in order to allow the client to keep track of which request the response belongs to. +It will return a msgpack response, the format of which can be found [here](https://gitea.arsenm.dev/Arsen6331/lrpc/src/branch/master/internal/types/types.go#L30). The response will have the same ID as was sent in the request in order to allow the client to keep track of which request the response belongs to. ---