Fix incorrect module names

This commit is contained in:
Jonathan Coates 2019-12-29 19:47:52 +00:00
parent 42f5389fb8
commit 0bcd28e58c
No known key found for this signature in database
GPG Key ID: D6D4CB5BFBBB5CB8
3 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
--- A collection of helper methods for working with input completion, such
-- as that require by @{read}.
--
-- @module craftos.completion
-- @module cc.completion
-- @see cc.shell.completion For additional helpers to use with
-- @{shell.setCompletionFunction}.

View File

@ -1,7 +1,7 @@
--- The @{craftos.expect} library provides helper functions for verifying that
--- The @{cc.expect} library provides helper functions for verifying that
-- function arguments are well-formed and of the correct type.
--
-- @module craftos.expect
-- @module cc.expect
local native_select, native_type = select, type

View File

@ -7,7 +7,7 @@
-- and so are not directly usable with the @{shell.setCompletionFunction}. Instead,
-- wrap them using @{build}, or your own custom function.
--
-- @module craftos.shell.completion
-- @module cc.shell.completion
-- @see cc.completion For more general helpers, suitable for use with @{read}.
-- @see shell.setCompletionFunction