fix(emqx_resource): remove extra space

This commit is contained in:
EMQ-YangM 2022-03-25 18:26:18 +08:00
parent 6b662d87ba
commit 9a2d70f98e
1 changed files with 1 additions and 1 deletions

View File

@ -265,7 +265,7 @@ call_start(InstId, Mod, Config) ->
?SAFE_CALL(Mod:on_start(InstId, Config)).
-spec call_health_check(instance_id(), module(), resource_state()) ->
{ok, resource_state()} | {error, Reason:: term()} | {error, Reason:: term(), resource_state()}.
{ok, resource_state()} | {error, Reason:: term()} | {error, Reason:: term(), resource_state()}.
call_health_check(InstId, Mod, ResourceState) ->
?SAFE_CALL(Mod:on_health_check(InstId, ResourceState)).