diff options
| author | Zuhaitz Méndez Fernández de Aránguiz <zuhaitz@debian> | 2026-01-27 01:22:42 +0000 |
|---|---|---|
| committer | Zuhaitz Méndez Fernández de Aránguiz <zuhaitz@debian> | 2026-01-27 01:22:42 +0000 |
| commit | 938773d9cc062fd028f6560b1127a2ecd23f61c3 (patch) | |
| tree | 403aacd629975440ba23a645975c34a141d634ee /src/lsp/json_rpc.h | |
| parent | 2f47bdf7f49f05bd421e4182635f489c8cae01b3 (diff) | |
Fixed constant hex/oct bug + Fixed some of the examples (work in progress) + added bootloader example (I will add some docs)
Diffstat (limited to 'src/lsp/json_rpc.h')
| -rw-r--r-- | src/lsp/json_rpc.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lsp/json_rpc.h b/src/lsp/json_rpc.h index 98d7ec1..0a5c282 100644 --- a/src/lsp/json_rpc.h +++ b/src/lsp/json_rpc.h @@ -4,10 +4,10 @@ /** * @brief Handle a raw JSON-RPC request string. - * - * Parses the request, routes it to the appropriate handler (initialize, textDocument/didChange, etc.), - * and sends back the response to stdout. - * + * + * Parses the request, routes it to the appropriate handler (initialize, textDocument/didChange, + * etc.), and sends back the response to stdout. + * * @param json_str Null-terminated JSON request string. */ void handle_request(const char *json_str); |
