aboutsummaryrefslogtreecommitdiff
path: root/core/.buffer.lua
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2007-08-15 14:55:54 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2007-08-15 14:55:54 -0400
commitf332c1ccccc666e908eea56592b139ef685a99fd (patch)
treed4c59832462769969eef7e55f48ef02d4fd1ff63 /core/.buffer.lua
parentd2cd8ef2d00d6af4205dfb92dff5b3590b48bc8a (diff)
downloadtextadept-f332c1ccccc666e908eea56592b139ef685a99fd.tar.gz
textadept-f332c1ccccc666e908eea56592b139ef685a99fd.zip
Fixed spelling and grammatical mistakes; core/.buffer.lua
Diffstat (limited to 'core/.buffer.lua')
-rw-r--r--core/.buffer.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/.buffer.lua b/core/.buffer.lua
index 6b174519..dec2f2b1 100644
--- a/core/.buffer.lua
+++ b/core/.buffer.lua
@@ -219,7 +219,7 @@ module('buffer')
-- (Write-only)
-- @field word_chars The set of characters making up words when moving or
-- selecting by word. (Write-only)
--- @field wrap_mode Flag indicating whether or not txt is word wrapped.
+-- @field wrap_mode Flag indicating whether or not text is word wrapped.
-- @field wrap_start_indent The start indent for wrapped lines.
-- @field wrap_visual_flags The display mode of visual flags for wrapped lines.
-- 0: none, 1: end, 2: start.
@@ -396,7 +396,7 @@ function buffer:add_text(text)
function buffer:allocate(bytes)
--- Appends a string to the end of the document without changing the selection.
function buffer:append_text(text)
---- Returns flag indicating whether or not an autocompletion list is visible.
+--- Returns a flag indicating whether or not an autocompletion list is visible.
function buffer:auto_c_active()
--- Removes the autocompletion list from the screen.
function buffer:auto_c_cancel()
@@ -490,7 +490,7 @@ function buffer:del_line_right()
function buffer:del_word_left()
--- Deletes the word to the right of the caret.
function buffer:del_word_right()
---- Deletes the selection or the caracter before the caret.
+--- Deletes the selection or the character before the caret.
function buffer:delete_back()
--- Deletes the selection or the character before the caret. Will not delete the
-- character before at the start of a lone.
@@ -840,7 +840,7 @@ function buffer:stuttered_page_up_extend()
function buffer:style_clear_all()
--- Returns the font name of a given style.
function buffer:style_get_font(style_num)
---- Resets teh default style to its state at startup.
+--- Resets the default style to its state at startup.
function buffer:style_reset_default()
--- Inserts a tab character or indent multiple lines.
function buffer:tab()