1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

compiler: attribute test - fix typo in function name

This commit is contained in:
joe-conigliaro 2020-02-01 18:59:34 +11:00 committed by GitHub
parent 696926a557
commit 05374e162e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
}