flow::Flow should follow *_mut naming conventions

Fixes #7148
This commit is contained in:
Corey Farwell 2015-08-12 14:39:27 -04:00
parent 3d0951cf25
commit 6aaada64dc
15 changed files with 128 additions and 138 deletions

View file

@ -68,11 +68,11 @@ impl Flow for ListItemFlow {
FlowClass::ListItem
}
fn as_block<'a>(&'a mut self) -> &'a mut BlockFlow {
fn as_mut_block<'a>(&'a mut self) -> &'a mut BlockFlow {
&mut self.block_flow
}
fn as_immutable_block<'a>(&'a self) -> &'a BlockFlow {
fn as_block<'a>(&'a self) -> &'a BlockFlow {
&self.block_flow
}
@ -228,4 +228,3 @@ impl ListStyleTypeContent {
}
}
}