]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] lua_maps docs: apply formatting 4687/head
authorAndrew Lewis <nerf@judo.za.org>
Mon, 6 Nov 2023 12:17:58 +0000 (14:17 +0200)
committerAndrew Lewis <nerf@judo.za.org>
Mon, 6 Nov 2023 12:17:58 +0000 (14:17 +0200)
lualib/lua_maps.lua

index baaed5b5055f99cc4b2919c4a3ab4f26ccce6a7d..1bcce6066d14971b7ed44d379c35da983a001a6c 100644 (file)
@@ -553,17 +553,17 @@ exports.rspamd_maybe_check_map = rspamd_maybe_check_map
 -- @function lua_maps.fill_config_maps(mname, options, defs)
 -- Fill maps that could be defined in defs, from the config in the options
 -- Defs is a table indexed by a map's parameter name and defining it's config,
--- for example:
-defs = {
-  my_map = {
-    type = 'map',
-    description = 'my cool map',
-    optional = true,
-  }
-}
--- Then this function will look for opts.my_map parameter and try to replace it's with
+-- @example
+-- defs = {
+--   my_map = {
+--     type = 'map',
+--     description = 'my cool map',
+--     optional = true,
+--   }
+-- }
+-- --[[ Then this function will look for opts.my_map parameter and try to replace it's with
 -- a map with the specific type, description but not failing if it was empty.
--- It will also set options.my_map_orig to the original value defined in the map
+-- It will also set options.my_map_orig to the original value defined in the map --]]
 --]]
 exports.fill_config_maps = function(mname, opts, map_defs)
   assert(type(opts) == 'table')