From 1da6eb5f512703668f7cd75a8b3bdea3679075c2 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Fri, 27 Mar 2020 22:17:36 +0900 Subject: [PATCH] [qfcc] Fix a typo in a comment --- tools/qfcc/include/def.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/qfcc/include/def.h b/tools/qfcc/include/def.h index df0104178..691c5d602 100644 --- a/tools/qfcc/include/def.h +++ b/tools/qfcc/include/def.h @@ -110,7 +110,7 @@ typedef struct def_s { /** Specify the storage class of a def. */ typedef enum storage_class_e { - sc_global, ///< def is globally visibil across units + sc_global, ///< def is globally visible across units sc_system, ///< def may be redefined once sc_extern, ///< def is externally allocated sc_static, ///< def is private to the current unit