From f1dba7023978846ae860d58aeffab654eb53984e Mon Sep 17 00:00:00 2001 From: Michele Caini Date: Fri, 24 Feb 2017 10:09:57 +0100 Subject: [PATCH] updated readme and contributors list --- AUTHORS | 15 ++++++++++++++- README.md | 17 ++++------------- 2 files changed, 18 insertions(+), 14 deletions(-) diff --git a/AUTHORS b/AUTHORS index 1e39bacd..d2155833 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1 +1,14 @@ -Michele Caini +# Author + +Michele Caini aka skypjack + +# Contributors + +Federico Bertolucci aka lessness +Luca Martini aka lordlukas +Elia Mazzuoli aka Zikoel +Francesco De Felice aka fradefe +Tushar Maheshwari aka tusharpm +Paolo Monteverde aka morbo84 +Jan Vcelak aka fcelda +Raoul Hecky aka raoul diff --git a/README.md b/README.md index 800bf2de..8628c0e5 100644 --- a/README.md +++ b/README.md @@ -121,13 +121,13 @@ The following sections will explain in short what it means to initialize and ter Initialization is usually performed under the hood and can be even passed over, as far as handles are created using the `Loop::resource` member function.
On the other side, handles keep themselves alive until one explicitly closes them. Because of that, memory usage will grow up if users simply forget about a handle.
-Therefore the rule quickly becomes *always close your handles*. It's simple as calling the `close` member function on them. +Therefore the rule quickly becomes *always close your handles*. It's as simple as calling the `close` member function on them. #### Requests Usually initializing a request object is not required. Anyway, the recommended way to create a request is still through the `Loop::resource` member function.
Requests will keep themselves alive as long as they are bound to unfinished underlying activities. This means that users have not to discard explicitly a request.
-Therefore the rule quickly becomes *feel free to make a request and forget about it*. It's simple as calling a member function on them. +Therefore the rule quickly becomes *feel free to make a request and forget about it*. It's as simple as calling a member function on them. #### The Loop and the Resource @@ -250,17 +250,8 @@ Then, to build the tests: # Contributors -Michele Caini aka [skypjack](https://github.com/skypjack)
-Federico Bertolucci aka [lessness](https://github.com/lessness)
-Luca Martini aka [lordlukas](https://github.com/lucamartini)
-Elia Mazzuoli aka [Zikoel](https://github.com/Zikoel)
-Francesco De Felice aka [fradefe](https://github.com/fradefe)
-Tushar Maheshwari aka [tusharpm](https://github.com/tusharpm)
-Paolo Monteverde aka [morbo84](https://github.com/morbo84)
-Jan Vcelak aka [fcelda](https://github.com/fcelda)
-Raoul Hecky aka raoul [raoulh](https://github.com/raoulh) - -If you want to contribute, please send patches as pull requests against the branch master. +If you want to contribute, please send patches as pull requests against the branch master.
+Check the [contributors list](https://github.com/skypjack/uvw/blob/master/AUTHORS) to see who has partecipated so far. # License