Skip to content

Commit

Permalink
chore: update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
kczulko committed Dec 1, 2024
1 parent 848cfcf commit f7dc2b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/rules.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ nim_module(<a href="#nim_module-name">name</a>, <a href="#nim_module-deps">deps<
| :------------- | :------------- | :------------- | :------------- | :------------- |
| <a id="nim_module-name"></a>name | A unique name for this target. | <a href="https://bazel.build/concepts/labels#target-names">Name</a> | required | |
| <a id="nim_module-deps"></a>deps | Other nim dependencies for this module. | <a href="https://bazel.build/concepts/labels">List of labels</a> | optional | `[]` |
| <a id="nim_module-srcs"></a>srcs | Nim sources that creates a module. | <a href="https://bazel.build/concepts/labels">List of labels</a> | required | |
| <a id="nim_module-srcs"></a>srcs | Nim sources that form a module. | <a href="https://bazel.build/concepts/labels">List of labels</a> | required | |
| <a id="nim_module-strip_import_prefix"></a>strip_import_prefix | The prefix to strip from the paths of the nim imports of this rule. | String | optional | `""` |


Expand Down
2 changes: 1 addition & 1 deletion nim/private/attrs.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ _NIM_MODULE_ATTRS = {
"srcs": attr.label_list(
allow_files = True,
mandatory = True,
doc = """Nim sources that creates a module.""",
doc = """Nim sources that form a module.""",
),
"deps": attr.label_list(
providers = [ NimModule ],
Expand Down

0 comments on commit f7dc2b2

Please sign in to comment.