docs: fix dbt package name in macros README (audit-hepler -> audit_helper) - #1512
Conversation
|
@vaibhav8a Thanks for catching and fixing this typo! The DCO check is failing because the commit is missing a git commit --amend --no-edit --signoff
git push --force-with-leaseThe Thanks again for the contribution! |
The macros README referred to the package as `audit-hepler`. The actual package, as pinned in integration_tests/dbt/packages.yml, is dbt-labs/audit_helper - which also matches the underscore style of dbt_profiler named alongside it in the same sentence. Signed-off-by: Vaibhav Srivastava <vaibhavsri1712@gmail.com>
c7d92da to
d08a63a
Compare
|
Hi @vaibhav8a, thanks for this one. Good catch, and nice that you traced it back to Curious, are you running Recce on your own dbt project? If so I'd love to hear what you've been using it for and where it's gotten in your way. Happy to keep it here in the thread, or if you'd rather talk, I can set up a short call at a time that works in your timezone. We're a small team and hearing from people who actually use it helps us a lot. Thanks again. |
macros/README.mdrefers to the dbt package asaudit-hepler- two issues in one token: a transposedhepler, and a hyphen where the package uses an underscore.The package pinned in
integration_tests/dbt/packages.ymlis:so the correct name is
audit_helper. That also matchesdbt_profiler, which is named alongside it in the same sentence and already uses an underscore.One-line docs fix.