diff options
author | 2011-01-25 21:51:56 -0500 | |
---|---|---|
committer | 2011-01-25 21:51:56 -0500 | |
commit | 92bea65c4d30de4c162c08f8a25c8ba873193039 (patch) | |
tree | 59500cc8b9b2ee939c40d815fe2327da3827e1f7 /modules/textadept/adeptsense.lua | |
parent | 2d850989a2f3b6f5a8b16c64179ab394c9f0c332 (diff) | |
download | textadept-92bea65c4d30de4c162c08f8a25c8ba873193039.tar.gz textadept-92bea65c4d30de4c162c08f8a25c8ba873193039.zip |
Fixed typos.
Diffstat (limited to 'modules/textadept/adeptsense.lua')
-rw-r--r-- | modules/textadept/adeptsense.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/textadept/adeptsense.lua b/modules/textadept/adeptsense.lua index e12b9d55..3c360167 100644 --- a/modules/textadept/adeptsense.lua +++ b/modules/textadept/adeptsense.lua @@ -170,7 +170,7 @@ function get_apidoc(sense, symbol) -- Try to display the type-correct apidoc by getting the entity the function -- is being called on and attempting to determine its type. Otherwise, fall -- back to the entity itself. In order for this to work, the first line in the - -- apidoc must start with the entiry (e.g. Class.function). + -- apidoc must start with the entity (e.g. Class.function). local class = sense.completions[entity] or sense:get_class(entity) if type(class) ~= 'string' then class = entity end -- fall back to entity for i, apidoc in ipairs(apidocs) do |