aboutsummaryrefslogtreecommitdiff
path: root/core/init.lua
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2013-08-26 21:47:55 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2013-08-26 21:47:55 -0400
commitacda712a50dbebafa295ccd07ce8186d9b82aa10 (patch)
tree0ab9229205aad0ac09bcdb0e9bc71c4f1bd87168 /core/init.lua
parent8a6341ae8db36e1b6857f90c39865d254dcdc163 (diff)
downloadtextadept-acda712a50dbebafa295ccd07ce8186d9b82aa10.tar.gz
textadept-acda712a50dbebafa295ccd07ce8186d9b82aa10.zip
Renamed `gui` to `ui` since it's more applicable.
Diffstat (limited to 'core/init.lua')
-rw-r--r--core/init.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/init.lua b/core/init.lua
index 1e184288..0049bc7a 100644
--- a/core/init.lua
+++ b/core/init.lua
@@ -10,7 +10,7 @@ _L = require('locale')
events = require('events')
require('file_io')
require('lfs_ext')
-require('gui')
+require('ui')
keys = require('keys')
_M = {} -- modules table
@@ -113,9 +113,9 @@ local quit
local reset
---
--- Calls the function *f* with the given arguments after *interval* seconds and
--- then repeatedly while *f* returns `true`. A `nil` or `false` return value
--- stops repetition.
+-- Calls function *f* with the given arguments after *interval* seconds and then
+-- repeatedly while *f* returns `true`. A `nil` or `false` return value stops
+-- repetition.
-- @param interval The interval in seconds to call *f* after.
-- @param f The function to call.
-- @param ... Additional arguments to pass to *f*.