소스 검색

fix(emqx_resource): remove extra space

EMQ-YangM 4 년 전
부모
커밋
9a2d70f98e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      apps/emqx_resource/src/emqx_resource.erl

+ 1 - 1
apps/emqx_resource/src/emqx_resource.erl

@@ -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)).