From db19b92dc38087eaa5a9de64f8e209065f183c9a Mon Sep 17 00:00:00 2001 From: jcoswalt <33890867+jcoswalt@users.noreply.github.com> Date: Sat, 12 Jun 2021 18:57:09 -0700 Subject: [PATCH] Fixed typo in readme Changed buld to build --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cb18264..7836c87 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ dbt-unit-test (dut) _A tiny framework for testing reusable code inside of dbt models_ -[DBT](www.getdbt.com) (Data Buld Tool) is a great way to maintain reusable sql code. With [macros](https://docs.getdbt.com/docs/building-a-dbt-project/jinja-macros#macros), we can build parametrizable code blocks which can be used in many places while maintaining DRYness. DBT even allows us to package macros as [modules](https://docs.getdbt.com/docs/building-a-dbt-project/package-management) to be maintained independently and even shared with the world as open-source code like the [dbt-utils](https://github.com/fishtown-analytics/dbt-utils) project. +[DBT](www.getdbt.com) (Data Build Tool) is a great way to maintain reusable sql code. With [macros](https://docs.getdbt.com/docs/building-a-dbt-project/jinja-macros#macros), we can build parametrizable code blocks which can be used in many places while maintaining DRYness. DBT even allows us to package macros as [modules](https://docs.getdbt.com/docs/building-a-dbt-project/package-management) to be maintained independently and even shared with the world as open-source code like the [dbt-utils](https://github.com/fishtown-analytics/dbt-utils) project. While reusable code has big advantages, it introduces a single point of failure, which requires careful testing. @@ -260,4 +260,4 @@ The generic version of this code is not so easy on the eyes, but what is importa ) }} ``` -Now we can write many tests for this reusable code, and use it with confidence because we have tested it thoroughly! \ No newline at end of file +Now we can write many tests for this reusable code, and use it with confidence because we have tested it thoroughly!