diff options
author | 2014-08-15 09:52:12 -0400 | |
---|---|---|
committer | 2014-08-15 09:52:12 -0400 | |
commit | 8490f78a1e06ec9dd2c7c75da96af02f58aaf5cb (patch) | |
tree | 323a2984ca74fc599f2f726fc425231333bf1157 | |
parent | 26b20cef3462ecc71d0c2e70e7a9cd1eb6aac4cc (diff) | |
download | textadept-8490f78a1e06ec9dd2c7c75da96af02f58aaf5cb.tar.gz textadept-8490f78a1e06ec9dd2c7c75da96af02f58aaf5cb.zip |
Fixed LuaDoc; core/.buffer.luadoc
-rw-r--r-- | core/.buffer.luadoc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/core/.buffer.luadoc b/core/.buffer.luadoc index 0f6874cd..dd696ef8 100644 --- a/core/.buffer.luadoc +++ b/core/.buffer.luadoc @@ -2708,13 +2708,14 @@ function set_y_caret_policy(buffer, policy, y) end function show_lines(buffer, start_line, end_line) end --- --- Begins styling at position *position* with styling bit-mask *styling_mask*. --- *styling_mask* specifies which style bits can be set with +-- Begins styling at position *position* with styling bit-mask *style_mask*. +-- *style_mask* specifies which style bits can be set with -- `buffer.set_styling()`. -- @param buffer A buffer. -- @param position The position in *buffer* to start styling at. --- @param styling_mask The bit mask of style bits that can be set when styling. +-- @param style_mask The bit mask of style bits that can be set when styling. -- @usage buffer:start_styling(0, 0xFF) +-- @see set_styling function start_styling(buffer, position, style_mask) end --- |