diff options
| author | Laytan Laats <laytanlaats@hotmail.com> | 2024-09-03 19:59:04 +0200 |
|---|---|---|
| committer | Laytan Laats <laytanlaats@hotmail.com> | 2024-09-03 19:59:04 +0200 |
| commit | 288312a8126d71fae26c9d62a8cd342d830e1c5f (patch) | |
| tree | aa56a083e0222975888a24cf8d755b7d0a4f1bc0 /core/dynlib | |
| parent | 0e6109e171d24b3bb17289219ae3b482c24f2460 (diff) | |
core: improve package doc comments for the documentation generator
Diffstat (limited to 'core/dynlib')
| -rw-r--r-- | core/dynlib/doc.odin | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/core/dynlib/doc.odin b/core/dynlib/doc.odin index f5c91c54e..487fcb715 100644 --- a/core/dynlib/doc.odin +++ b/core/dynlib/doc.odin @@ -4,7 +4,6 @@ Package `core:dynlib` implements loading of shared libraries/DLLs and their symb The behaviour of dynamically loaded libraries is specific to the target platform of the program. For in depth detail on the underlying behaviour please refer to your target platform's documentation. -See `example` directory for an example library exporting 3 symbols and a host program loading them automatically -by defining a symbol table struct. +For a full example, see: [[ core/dynlib/example; https://github.com/odin-lang/Odin/tree/master/core/dynlib/example ]] */ package dynlib |