commit 2ee8b4f2e975303749181fb71f4dce7b6543f90c from: Sergey Bronnikov date: Thu Nov 7 12:49:52 2024 UTC molly: fix crosslinks in ldoc comments commit - a4172212cc9d46a768569252466384081b0f14ed commit + 2ee8b4f2e975303749181fb71f4dce7b6543f90c blob - 752adb8446bec2f00fbf5464c03efb77ae97ee55 blob + 3a02dc1e4205f2d3091635b26bb2cea618938563 --- CHANGELOG.md +++ CHANGELOG.md @@ -29,6 +29,7 @@ and this project adheres to [Semantic Versioning](http - Executing `close` method in a `Client` instance (#2). - list-append generator (#3). - Passing a client object to a client's methods (#9). +- Links in rendered LDoc documentation for a module `molly.gen`. [Unreleased]: https://github.com/ligurio/molly/compare/0.1.0...HEAD blob - c82236b8a0db3486aa7e64693c5f972d710bb905 blob + 094a7603993c6d16ab68e8dd11c894e18a39957c --- molly/gen.lua +++ molly/gen.lua @@ -212,11 +212,11 @@ local span = fun.span methods.span = span exports.span = span --- An alias for span(). --- See `fun.span`. +-- See `gen.span`. -- @function split --- An alias for span(). --- See `fun.span`. +-- See `gen.span`. -- @function split_at --- Indexing @@ -226,26 +226,26 @@ exports.span = span -- See [fun.index](https://luafun.github.io/indexing.html#fun.index). --- An alias for index(). --- See `fun.index`. +-- See `gen.index`. -- @function index_of --- An alias for index(). --- See `fun.index`. +-- See `gen.index`. -- @function elem_index --- @function indexes -- See [fun.indexes](https://luafun.github.io/indexing.html#fun.indexes). --- An alias for indexes(). --- See `fun.indexes`. +-- See `gen.indexes`. -- @function indices --- An alias for indexes(). --- See `fun.indexes`. +-- See `gen.indexes`. -- @function elem_indexes --- An alias for indexes(). --- See `fun.indexes`. +-- See `gen.indexes`. -- @function elem_indices --- Filtering @@ -261,7 +261,7 @@ exports.span = span --- If `regexp_or_predicate` is string then the parameter is used as a regular -- expression to build filtering predicate. Otherwise the function is just an --- alias for gen.filter(). +-- alias for `gen.filter`. -- @function grep -- See [fun.grep](https://luafun.github.io/filtering.html#fun.grep). @@ -307,14 +307,14 @@ exports.span = span -- See [fun.all](https://luafun.github.io/reducing.html#fun.all). --- An alias for all(). --- See `fun.all`. +-- See `gen.all`. -- @function every --- @function any -- See [fun.any](https://luafun.github.io/reducing.html#fun.any). --- An alias for any(). --- See `fun.any`. +-- See `gen.any`. -- @function some --- Transformations