1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-06-28 20:10:35 +02:00

prepare actix-server release

This commit is contained in:
Nikolay Kim
2019-03-02 14:42:31 -08:00
parent 672c3936a6
commit 2e4c84dbb6
4 changed files with 13 additions and 12 deletions

View File

@ -183,9 +183,6 @@ impl ServerBuilder {
/// This methods panics if no socket addresses get bound.
///
/// ```rust,ignore
/// # extern crate futures;
/// # extern crate actix_web;
/// # use futures::Future;
/// use actix_web::*;
///
/// fn main() {

View File

@ -28,6 +28,6 @@ impl Token {
}
/// Start server building process
pub fn build() -> ServerBuilder {
pub fn new() -> ServerBuilder {
ServerBuilder::default()
}