aboutsummaryrefslogtreecommitdiff
path: root/gamemode/shared
diff options
context:
space:
mode:
authorAlexander Pickering <alexandermpickering@gmail.com>2017-11-18 02:37:05 -0500
committerAlexander Pickering <alexandermpickering@gmail.com>2017-11-18 02:37:05 -0500
commit8ed7aec95941c0752a0ae21d10594579c39677fb (patch)
treed160fb6d89ec10f863b9d2773d3a14c09978b4ff /gamemode/shared
parent0a490d7d811c682a8d0f5a74840583028f13822a (diff)
downloadartery-8ed7aec95941c0752a0ae21d10594579c39677fb.tar.gz
artery-8ed7aec95941c0752a0ae21d10594579c39677fb.tar.bz2
artery-8ed7aec95941c0752a0ae21d10594579c39677fb.zip
Updates to documentation
* Fixed typos in README * Added Server/Client/Shared kinds to documentation * Documentation now includes readme
Diffstat (limited to 'gamemode/shared')
-rw-r--r--gamemode/shared/concommands.lua2
-rw-r--r--gamemode/shared/log.lua2
2 files changed, 2 insertions, 2 deletions
diff --git a/gamemode/shared/concommands.lua b/gamemode/shared/concommands.lua
index 79ea0f3..ad91d53 100644
--- a/gamemode/shared/concommands.lua
+++ b/gamemode/shared/concommands.lua
@@ -1,6 +1,6 @@
--- Concommand autocomplete helper.
-- Helps you write console commands' autocomplete functions
---@module concommands.lua
+--@shared concommands.lua
local fuzzel = nrequire("fuzzel.lua")
diff --git a/gamemode/shared/log.lua b/gamemode/shared/log.lua
index 24fe58f..8005000 100644
--- a/gamemode/shared/log.lua
+++ b/gamemode/shared/log.lua
@@ -1,6 +1,6 @@
--- Logging utility.
-- This prints things to the console for now, maybe it can automatically file bugs and save bug reports in the future?
---@module log.lua
+--@shared log.lua
local log = {}