# HG changeset patch
# User Kim Alvefur <zash@zash.se>
# Date 1603635816 -3600
# Node ID 8a29e72069171d27760c8b42902a2b4f37eebf86
# Parent  76e135fbca0fd63172d1156a6d119b071f320c69
mod_pubsub: Comment on itemstore type

diff -r 76e135fbca0f -r 8a29e7206917 plugins/mod_pubsub/mod_pubsub.lua
--- a/plugins/mod_pubsub/mod_pubsub.lua	Sun Oct 25 15:21:34 2020 +0100
+++ b/plugins/mod_pubsub/mod_pubsub.lua	Sun Oct 25 15:23:36 2020 +0100
@@ -42,7 +42,7 @@
 
 local node_store = module:open_store(module.name.."_nodes");
 
-local function create_simple_itemstore(node_config, node_name)
+local function create_simple_itemstore(node_config, node_name) --> util.cache like object
 	local driver = storagemanager.get_driver(module.host, "pubsub_data");
 	local archive = driver:open("pubsub_"..node_name, "archive");
 	return lib_pubsub.archive_itemstore(archive, node_config, nil, node_name);