fix doc comment

This commit is contained in:
NikVolf 2017-04-26 23:10:37 +03:00
parent d54f093a5c
commit 445ae26b65

View File

@ -95,7 +95,7 @@ impl DataSegment {
/// Initial value of the data segment.
pub fn value(&self) -> &[u8] { &self.value }
/// Initial value of the data segment.
/// Initial value of the data segment (mutable).
pub fn value_mut(&mut self) -> &mut Vec<u8> { &mut self.value }
}