Skip to content

Commit

Permalink
Merge pull request #132 from jakbyte/invoke-fn-impl-typo
Browse files Browse the repository at this point in the history
style: add a missing space to invoke_fn15's definition
  • Loading branch information
baszalmstra authored Apr 12, 2020
2 parents f1b4975 + 3f30754 commit 6ac6e11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/mun_runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -295,5 +295,5 @@ invoke_fn_impl! {
fn invoke_fn12(a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H, i: I, j: J, k: K, l: L) -> InvokeErr12;
fn invoke_fn13(a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H, i: I, j: J, k: K, l: L, m: M) -> InvokeErr13;
fn invoke_fn14(a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H, i: I, j: J, k: K, l: L, m: M, n: N) -> InvokeErr14;
fn invoke_fn15(a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H, i: I, j: J, k: K, l: L, m: M, n: N, o:O) -> InvokeErr15;
fn invoke_fn15(a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H, i: I, j: J, k: K, l: L, m: M, n: N, o: O) -> InvokeErr15;
}

0 comments on commit 6ac6e11

Please sign in to comment.