Remove trailing spaces

This commit is contained in:
Mohd Tarmizi 2016-06-18 16:53:19 +08:00
parent 90f8f3627d
commit f62ba94bc4
1 changed files with 4 additions and 4 deletions

View File

@ -28,9 +28,9 @@
//! Example usage: //! Example usage:
//! //!
//! extern crate fastcgi; //! extern crate fastcgi;
//! //!
//! use std::io::Write; //! use std::io::Write;
//! //!
//! fn main() { //! fn main() {
//! fastcgi::run(|mut req| { //! fastcgi::run(|mut req| {
//! write!(&mut req.stdout(), "Content-Type: text/plain\n\nHello, world!") //! write!(&mut req.stdout(), "Content-Type: text/plain\n\nHello, world!")
@ -599,9 +599,9 @@ pub fn run<F>(handler: F) where F: FnMut(Request) {
} }
#[cfg(unix)] #[cfg(unix)]
/// Accepts requests from a user-supplied raw file descriptor. IPv4, IPv6, and /// Accepts requests from a user-supplied raw file descriptor. IPv4, IPv6, and
/// Unix domain sockets are supported. /// Unix domain sockets are supported.
/// ///
/// Available under Unix only. /// Available under Unix only.
pub fn run_raw<F>(handler: F, raw_fd: std::os::unix::io::RawFd) where F: FnMut(Request) { pub fn run_raw<F>(handler: F, raw_fd: std::os::unix::io::RawFd) where F: FnMut(Request) {
run_transport(handler, &mut Transport::from_raw_fd(raw_fd)) run_transport(handler, &mut Transport::from_raw_fd(raw_fd))