summaryrefslogtreecommitdiff
path: root/lua/99/utils.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/99/utils.lua')
-rw-r--r--lua/99/utils.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/lua/99/utils.lua b/lua/99/utils.lua
index 7e012a2..c308624 100644
--- a/lua/99/utils.lua
+++ b/lua/99/utils.lua
@@ -4,11 +4,11 @@ local M = {}
--- to make the _99_state have the project directory.
--- @return string
function M.random_file()
- return string.format(
- "%s/tmp/99-%d",
- vim.uv.cwd(),
- math.floor(math.random() * 10000)
- )
+ return string.format(
+ "%s/tmp/99-%d",
+ vim.uv.cwd(),
+ math.floor(math.random() * 10000)
+ )
end
return M