fix(misc): whitespace and trait rename

* `ResourceMethodsBuilder` -> `MethodsBuilder`. This is now precise
   enough. Previously it was just to similar to what's now a
   `CallBuilder`
* Fixed whitespace issue in `doit()`
This commit is contained in:
Sebastian Thiel
2015-03-23 08:49:27 +01:00
parent 04f4c95688
commit 6ad0c2ef79
4 changed files with 5 additions and 5 deletions

View File

@@ -22,7 +22,7 @@ use serde;
pub trait Hub: MarkerTrait {}
/// Identifies types for building methods of a particular resource type
pub trait ResourceMethodsBuilder: MarkerTrait {}
pub trait MethodsBuilder: MarkerTrait {}
/// Identifies types which represent builders for a particular resource method
pub trait CallBuilder: MarkerTrait {}