Skip to content

Commit

Permalink
Rerender README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jeancochrane committed Dec 1, 2023
1 parent 31dc99d commit 18cfbce
Show file tree
Hide file tree
Showing 2 changed files with 110 additions and 107 deletions.
2 changes: 1 addition & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ get_column_description <- function(colname, dag_nodes, hardcoded_descriptions) {
# Strip everything after the first period, since we use the first
# period as a delimiter separating a column's high-level summary from
# its detailed notes in our dbt docs
summary_description <- strplit(description, ".", fixed = TRUE)[[1]][1]
summary_description <- strsplit(description, ".", fixed = TRUE)[[1]][1]
return(gsub("\n", " ", summary_description))
}
}
Expand Down
Loading

0 comments on commit 18cfbce

Please sign in to comment.