Skip to content

Commit c8f4501

Browse files
committed
Fix Syntax Error
Replace semi-colon with comma; My C++ experience must be infecting my Rust code
1 parent 2ac88f7 commit c8f4501

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/memory_map.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ impl MemoryMapTag {
2424
/// Return an iterator over all AVAILABLE marked memory areas.
2525
pub fn memory_areas(&self) -> MemoryAreaIter {
2626
MemoryAreaIter {
27-
iter: self.all_memory_areas();
27+
iter: self.all_memory_areas(),
2828
}
2929
}
3030
/// Return an iterator over all marked memory areas.

0 commit comments

Comments
 (0)