Skip to content

Commit f7dd479

Browse files
committed
fix: code style
1 parent e7c7102 commit f7dd479

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/dispatcher.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ nlohmann::json dispatcher::do_process_request(const nlohmann::json& request, con
4747
const auto req = jsonrpc_request::from_json(request);
4848
is_discarded = req.id.is_discarded();
4949

50-
dispatcher::context_t ctx = std::make_pair(data, req.extra);
51-
const auto res = this->invoke(req.method, req.params, ctx);
50+
const dispatcher::context_t ctx = std::make_pair(data, req.extra);
51+
const auto res = this->invoke(req.method, req.params, ctx);
5252
if (!request_id.is_null()) {
5353
// clang-format off
5454
return {

src/utils.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#include "exception.h"
33

44
/**
5-
* @file utils.h
5+
* @file
66
* @brief Implemenmtation of utility functions for JSON RPC handling.
77
* @internal
88
*/

src/utils.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#define AB18CB0F_2A0A_401A_A253_B793A4B1FFB4
33

44
/**
5-
* @file utils.h
5+
* @file
66
* @brief Utility functions for JSON RPC handling.
77
*/
88

0 commit comments

Comments
 (0)