Skip to content

Commit

Permalink
tools: Add trailing newlines to files that were missing them
Browse files Browse the repository at this point in the history
This avoids things like:

  ~$ cat tools/validation_helpers.py
  ...
          return self.is_block(ast_node) and has_heading~$

with your next prompt way over to the right ;).
  • Loading branch information
wking committed Apr 4, 2015
1 parent 50aa8c1 commit 787a378
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tools/chunk-options.R
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ hook_out <- function(x, options) {
}

knit_hooks$set(source = hook_in, output = hook_out, warning = hook_out,
error = hook_out, message = hook_out)
error = hook_out, message = hook_out)
2 changes: 1 addition & 1 deletion tools/validation_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,4 +239,4 @@ def is_callout(self, ast_node):
else:
has_heading = False

return self.is_block(ast_node) and has_heading
return self.is_block(ast_node) and has_heading

0 comments on commit 787a378

Please sign in to comment.