Skip to content

Commit

Permalink
[doc] Fix argument name in example
Browse files Browse the repository at this point in the history
Change-Id: If06c7131933720a457416bd98f19438ecf8737ba
Reviewed-on: https://fuchsia-review.googlesource.com/c/shac-project/shac/+/1052124
Commit-Queue: Auto-Submit <[email protected]>
Fuchsia-Auto-Submit: Rob Mohr <[email protected]>
Reviewed-by: Oliver Newman <[email protected]>
  • Loading branch information
mohrr authored and CQ Bot committed May 22, 2024
1 parent 7148098 commit d2ee6f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/stdlib.md
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ def cb(ctx):
message="Do not use bad_word",
filepath=path,
line=num,
start_col=idx+1,
col=idx+1,
end_col=idx+1+len("bad_word"),
replacements=["best_word", "good_word"],
)
Expand Down
2 changes: 1 addition & 1 deletion doc/stdlib.star
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ def _ctx_emit_finding(level, message, filepath = None, line = None, col = None,
message="Do not use bad_word",
filepath=path,
line=num,
start_col=idx+1,
col=idx+1,
end_col=idx+1+len("bad_word"),
replacements=["best_word", "good_word"],
)
Expand Down

0 comments on commit d2ee6f4

Please sign in to comment.