From 05374e162e253aac38f3a324bab28c8c078cda10 Mon Sep 17 00:00:00 2001 From: joe-conigliaro Date: Sat, 1 Feb 2020 18:59:34 +1100 Subject: [PATCH] compiler: attribute test - fix typo in function name --- vlib/compiler/tests/attribute_test.v | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vlib/compiler/tests/attribute_test.v b/vlib/compiler/tests/attribute_test.v index f16984f7f3..e93aef6bf9 100644 --- a/vlib/compiler/tests/attribute_test.v +++ b/vlib/compiler/tests/attribute_test.v @@ -23,11 +23,11 @@ pub enum PubEnumAttrTest { } [testing] -fn test_fn_attribte() { +fn test_fn_attribute() { assert true } [testing] -pub fn test_pub_fn_attribte() { +pub fn test_pub_fn_attribute() { assert true } \ No newline at end of file