diff options
author | max397574 <[email protected]> | 2021-12-09 18:52:43 +0100 |
---|---|---|
committer | max397574 <[email protected]> | 2021-12-09 18:52:43 +0100 |
commit | 5aaffe9c0175756d5534c5554db65994aa3fdb0d (patch) | |
tree | 7c33bfb8c16312d2bbd2180009d46d7979a7e335 /lua/startup | |
parent | 16821b50662ac1a573d82fc2238c884245a33a92 (diff) |
fix(funcitons): fixed annotations
Diffstat (limited to 'lua/startup')
-rw-r--r-- | lua/startup/functions.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lua/startup/functions.lua b/lua/startup/functions.lua index 16adf5e..f0985e3 100644 --- a/lua/startup/functions.lua +++ b/lua/startup/functions.lua @@ -6,7 +6,7 @@ local functions = {} local quotes = require("startup.quotes") ---- Returns a random programming quote +---Returns a random programming quote ---@return table quote Lines of text for the quote function functions.quote() math.randomseed(os.clock()) @@ -14,7 +14,7 @@ function functions.quote() return quotes[math.floor(index) + 1] end ---- Returns a string with the number of loaded Packer Plugins +---Returns a string with the number of loaded Packer Plugins ---@return string PluginInfo String with info about the number of loaded plugins function functions.packer_plugins() return { @@ -25,7 +25,7 @@ function functions.packer_plugins() } end ---- Returns the current date and time +---Returns the current date and time ---@return table date_time Table with a string for the date and one for the time function functions.date_time() local clock = " " .. os.date("%H:%M") |