fix(bridge): make spellcheck happy

This commit is contained in:
firest 2022-08-22 15:58:11 +08:00
parent dce47aac17
commit 2471580c47
1 changed files with 2 additions and 0 deletions

View File

@ -127,6 +127,8 @@ desc(connector) ->
?DESC("desc_connector"); ?DESC("desc_connector");
desc(Method) when Method =:= "get"; Method =:= "put"; Method =:= "post" -> desc(Method) when Method =:= "get"; Method =:= "put"; Method =:= "post" ->
["Configuration for MySQL using `", string:to_upper(Method), "` method."]; ["Configuration for MySQL using `", string:to_upper(Method), "` method."];
desc("creation_opts" = Name) ->
emqx_resource_schema:desc(Name);
desc(_) -> desc(_) ->
undefined. undefined.