Skip to content

Commit

Permalink
pretty debug
Browse files Browse the repository at this point in the history
  • Loading branch information
softprops committed Feb 13, 2016
1 parent 9419e54 commit 3b4b7a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/gists.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ fn main() {
let gist = github.gists()
.create(&GistOptions::builder(files).public(false).build())
.unwrap();
println!("{:?}", gist)
println!("{:#?}", gist)
}
_ => println!("example missing GITHUB_TOKEN"),
}
Expand Down
2 changes: 1 addition & 1 deletion examples/repos.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ fn main() {
&client,
Some(token));
for repo in github.repos().list().unwrap() {
println!("{:?}", repo)
println!("{:#?}", repo)
}
}
_ => println!("example missing GITHUB_TOKEN"),
Expand Down

0 comments on commit 3b4b7a1

Please sign in to comment.