Merge pull request #14 from Wilfred/patch-1

Vec<u8> values cannot be printed
This commit is contained in:
Christopher Cole 2016-10-09 09:32:22 -07:00 committed by GitHub
commit 44654da0c6

View File

@ -9,7 +9,6 @@ Pure-Rust library for parsing ELF files
```rust
extern crate elf;
use std::env;
use std::path::PathBuf;
let path = PathBuf::from("/some/file/path");
@ -23,6 +22,6 @@ let text_scn = match file.get_section(".text") {
None => panic!("Failed to look up .text section"),
};
println!("{}", text_scn.data);
println!("{:?}", text_scn.data);
```