Skip to content

Commit

Permalink
another readme typo
Browse files Browse the repository at this point in the history
  • Loading branch information
bhesh committed Nov 6, 2023
1 parent d928a63 commit 4a9d18d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ Some of the features of this crate are in an early, experimental phase. Use at y
let mut f = fs::File::open("testdata/ocsp-amazon-resp.der").expect("error opening file");
let mut data = Vec::new();
f.read_to_end(&mut data).expect("error reading file");
let res = OcspResponse::from_der(&data).expect("error decoding OcspRequest");
let res = OcspResponse::from_der(&data).expect("error decoding OCSP response");
assert_eq!(res.response_status, OcspResponseStatus::Successful);
let res = BasicOcspResponse::from_der(
res.response_bytes
Expand Down

0 comments on commit 4a9d18d

Please sign in to comment.