docs: update STATUS.md

This commit is contained in:
PoiScript 2019-01-21 22:51:40 +08:00
parent 64535641c1
commit 918b14de52
3 changed files with 3 additions and 3 deletions

View file

@ -50,7 +50,6 @@ impl List {
}
// returns (contents_begin, contents_end)
// TODO: handle nested list
pub fn parse_item(src: &str, ident: usize) -> (usize, usize) {
let beg = src[ident..].find(' ').map(|i| ident + i + 1).unwrap();
let mut lines = lines!(src);

View file

@ -433,7 +433,6 @@ impl<'a> Iterator for Parser<'a> {
if self.off >= end {
self.end()
} else {
// TODO: handle nested list
self.next_ele(end)
}
}