Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellga committed May 3, 2024
1 parent aaec9c3 commit ce3ba2f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rdocs"
version = "0.1.42"
version = "0.1.43"
edition = "2021"
repository = "https://github.com/daniellga/rdocs/"

Expand Down
2 changes: 1 addition & 1 deletion rdocs/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: rdocs
Title: Create Quarto documentation for R files from comments
Version: 0.1.42
Version: 0.1.43
Authors@R:
person("Daniel", "Gurgel", , "daniellga@gmail.com", role = c("aut", "cre"))
Description: Generate R documentation in Quarto format based on comments in code files.
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ fn eval_examples(mut examples: Vec<String>) {
let error_message = String::from_utf8_lossy(&output.stderr);
panic!(
"Error running example:\n\n{}\n\n**********\n\nR code executed:\n\n{}",
error_message, output_text
error_message, example
);
}
}
Expand Down

0 comments on commit ce3ba2f

Please sign in to comment.