From 2b38777350bc4272e8832785303bb41dbcd64680 Mon Sep 17 00:00:00 2001 From: Matthew Cech Date: Sat, 20 Apr 2019 23:16:24 -0700 Subject: [PATCH] = Updated example --- plugins/example.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/example.lua b/plugins/example.lua index 8833fdb..6da2a72 100644 --- a/plugins/example.lua +++ b/plugins/example.lua @@ -1,7 +1,7 @@ -- Example plugin stub. This function is called and passed the input message. -- If nil is returned, the plugin is considered to have not run, but if any -- other value is returned, it's interpreted as a string and sent back to the user. --- 'local' Variables inside of this file persiste between plugin calls. +-- 'local' variables inside of this file persiste between plugin calls. function plugin(message) return nil; end