From 2e96a79969f7bb95abe62f193ac0206a2fe9bb02 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Mon, 16 Oct 2017 10:43:35 -0700 Subject: [PATCH] doc strings --- README.md | 6 +++--- src/staticfiles.rs | 3 +++ 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5e5ce24b9..c0bd37ada 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# Actix http [![Build Status](https://travis-ci.org/fafhrd91/actix-web.svg?branch=master)](https://travis-ci.org/fafhrd91/actix-web) [![codecov](https://codecov.io/gh/fafhrd91/actix-web/branch/master/graph/badge.svg)](https://codecov.io/gh/fafhrd91/actix-web) +# Actix web [![Build Status](https://travis-ci.org/fafhrd91/actix-web.svg?branch=master)](https://travis-ci.org/fafhrd91/actix-web) [![codecov](https://codecov.io/gh/fafhrd91/actix-web/branch/master/graph/badge.svg)](https://codecov.io/gh/fafhrd91/actix-web) -Actix http is a server http framework for Actix framework. +Web framework for Actix. * [API Documentation](http://fafhrd91.github.io/actix-web/actix_web/) * Cargo package: [actix-http](https://crates.io/crates/actix-web) @@ -8,7 +8,7 @@ Actix http is a server http framework for Actix framework. --- -Actix http is licensed under the [Apache-2.0 license](http://opensource.org/licenses/APACHE-2.0). +Actix web is licensed under the [Apache-2.0 license](http://opensource.org/licenses/APACHE-2.0). ## Features diff --git a/src/staticfiles.rs b/src/staticfiles.rs index d73c964fa..4c6a5673b 100644 --- a/src/staticfiles.rs +++ b/src/staticfiles.rs @@ -1,3 +1,6 @@ +//! Static files support. +//! +//! TODO: needs to re-implement actual files handling, current impl blocks #![allow(dead_code, unused_variables)] use std::io; use std::io::Read;