Skip to content

Commit 5a140fb

Browse files
dmcilvaneyPawelWMS
andauthored
Apply suggestions from code review
Co-authored-by: Pawel Winogrodzki <pawelwi@microsoft.com>
1 parent 9459acb commit 5a140fb

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/copilot-instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Run all commands from the repo root (where `azldev.toml` lives). If the terminal
6565
| Add a component | `azldev comp add` |
6666
| Build a component | `azldev comp build -p <name> -q` |
6767
| Build chain (auto-publish to local repo) | `azldev comp build --local-repo-with-publish ./base/out -p <a> -p <b> -q` |
68-
| Render many specs for check-in | `azldev comp render -a` |
68+
| Render all specs for check-in | `azldev comp render -a` |
6969
| Render a single component | `azldev comp render -p <name>` |
7070
| Prepare sources (apply overlays) | `azldev comp prep-sources -p <name> --force -o <dir> -q` |
7171
| Prepare sources (skip overlays) | `azldev comp prep-sources -p <name> --skip-overlays --force -o <dir> -q` |

.github/workflows/scripts/check_rendered_specs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def _git_bytes(*args: str) -> bytes:
5252

5353

5454
def _git_lines_z(*args: str) -> list[str]:
55-
"""Run a git command with -z-compatible args and return NUL-split lines."""
55+
"""Run a git command with -z-compatible args and return NULL-split lines."""
5656
out = _git_bytes(*args)
5757
return [p.decode("utf-8") for p in out.split(b"\x00") if p]
5858

0 commit comments

Comments
 (0)