Skip to content
This repository has been archived by the owner on Jun 2, 2020. It is now read-only.

Commit

Permalink
Run cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
rylev committed Feb 4, 2019
1 parent c9b81d1 commit 7d563a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions azure-functions-codegen/src/lib.rs
Expand Up @@ -35,7 +35,7 @@ use proc_macro::TokenStream;
/// ```
#[proc_macro_hack]
pub fn export(input: TokenStream) -> TokenStream {
export::attr_impl(input)
export::attr_impl(input)
}

/// Implements the `func` attribute.
Expand All @@ -53,5 +53,5 @@ pub fn export(input: TokenStream) -> TokenStream {
/// }
#[proc_macro_attribute]
pub fn func(args: TokenStream, input: TokenStream) -> TokenStream {
func::attr_impl(args, input)
func::attr_impl(args, input)
}
2 changes: 1 addition & 1 deletion examples/blob/src/functions/blob_watcher.rs
@@ -1,4 +1,4 @@
use azure_functions::{func, bindings::BlobTrigger};
use azure_functions::{bindings::BlobTrigger, func};

#[func]
#[binding(name = "trigger", path = "watching/{name}")]
Expand Down

0 comments on commit 7d563a4

Please sign in to comment.