Rename all variables that have uppercase characters in their names to use only lowercase characters

This commit is contained in:
Palmer Cox 2014-02-15 16:15:03 -05:00
parent fe50c75d02
commit 6d9bdf975a
21 changed files with 541 additions and 541 deletions

View file

@ -85,8 +85,8 @@ impl Reader for UdpStream {
impl Writer for UdpStream {
fn write(&mut self, buf: &[u8]) -> IoResult<()> {
let connectedTo = self.connectedTo;
self.as_socket(|sock| sock.sendto(buf, connectedTo))
let connected_to = self.connectedTo;
self.as_socket(|sock| sock.sendto(buf, connected_to))
}
}