File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -44,15 +44,15 @@ pub fn make_static_metric(input: TokenStream) -> TokenStream {
44
44
TokensBuilder :: build ( body) . into ( )
45
45
}
46
46
47
- /// Build auto flush able static metrics.
47
+ /// Build auto flushable static metrics.
48
48
/// refer to https://github.com/tikv/rust-prometheus/tree/master/static-metric for more info.
49
49
#[ proc_macro]
50
50
pub fn make_auto_flush_static_metric ( input : TokenStream ) -> TokenStream {
51
51
let body: StaticMetricMacroBody = syn:: parse ( input) . unwrap ( ) ;
52
52
AutoFlushTokensBuilder :: build ( body) . into ( )
53
53
}
54
54
55
- /// Instantiate a auto flush able static metric struct from a HistogramVec or CounterVec.
55
+ /// Instantiate an auto flushable static metric struct from a HistogramVec or CounterVec.
56
56
#[ proc_macro]
57
57
pub fn auto_flush_from ( input : TokenStream ) -> TokenStream {
58
58
let def: AutoFlushFromDef = syn:: parse ( input) . unwrap ( ) ;
You can’t perform that action at this time.
0 commit comments