aboutsummaryrefslogtreecommitdiffstats
path: root/src/events/binary_reader.rs
diff options
context:
space:
mode:
authorEdward Barnard2018-10-06 20:03:19 +0100
committerEdward Barnard2018-10-06 20:03:19 +0100
commit68f412c2bd440733226e5a463c542323000454e4 (patch)
treefdaac7f2f91b033e18ee4dd6634de40359856df0 /src/events/binary_reader.rs
parenta1ab2a2550ed444828a8c76aaa8861268faeca33 (diff)
downloadrust-plist-68f412c2bd440733226e5a463c542323000454e4.tar.bz2
Minor doc improvements.
Diffstat (limited to 'src/events/binary_reader.rs')
-rw-r--r--src/events/binary_reader.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/events/binary_reader.rs b/src/events/binary_reader.rs
index 6068545..7da48d5 100644
--- a/src/events/binary_reader.rs
+++ b/src/events/binary_reader.rs
@@ -29,8 +29,8 @@ enum StackType {
Root,
}
-/// https://opensource.apple.com/source/CF/CF-550/CFBinaryPList.c
-/// https://hg.python.org/cpython/file/3.4/Lib/plistlib.py
+// https://opensource.apple.com/source/CF/CF-550/CFBinaryPList.c
+// https://hg.python.org/cpython/file/3.4/Lib/plistlib.py
pub struct BinaryReader<R> {
stack: Vec<StackItem>,
object_offsets: Vec<u64>,