Skip to content

Commit 385e316

Browse files
Merge branch 'main' into reknit-readme
2 parents ff8f6a3 + cb33e89 commit 385e316

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/pkgdown.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939

4040
- name: Deploy to GitHub pages 🚀
4141
if: github.event_name != 'pull_request'
42-
uses: JamesIves/github-pages-deploy-action@v4.4.3
42+
uses: JamesIves/github-pages-deploy-action@v4.5.0
4343
with:
4444
clean: false
4545
branch: gh-pages

R/detect-alignment-utils.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,9 +153,9 @@ alignment_serialize_line <- function(relevant_pd_by_line, column) {
153153
alignment_serialize <- function(pd_sub) {
154154
out <- Map(function(terminal, text, child, spaces, newlines) {
155155
if (terminal) {
156-
return(paste0(text, rep_char(" ", spaces)))
156+
paste0(text, rep_char(" ", spaces))
157157
} else {
158-
return(paste0(alignment_serialize(child), rep_char(" ", spaces)))
158+
paste0(alignment_serialize(child), rep_char(" ", spaces))
159159
}
160160
}, pd_sub$terminal, pd_sub$text, pd_sub$child, pd_sub$spaces, pd_sub$newlines)
161161
if (anyNA(out)) {

0 commit comments

Comments
 (0)