diff options
author | Tim Gates <tim.gates@iress.com> | 2020-12-20 09:03:41 +1100 |
---|---|---|
committer | Leandro A. F. Pereira <leandro@hardinfo.org> | 2020-12-22 15:39:53 -0800 |
commit | 5277df98922da5e597e223841bb83213a567d2fb (patch) | |
tree | 0793295c525d3090356e0f4915513b68fc2c45ec /modules/devices/riscv/riscv_data.c | |
parent | 3fb84744b00c028d649833ff03b1bb6f49ecab21 (diff) |
docs: fix simple typo, insensitve -> insensitive
There is a small typo in modules/devices/riscv/riscv_data.c.
Should read `insensitive` rather than `insensitve`.
Diffstat (limited to 'modules/devices/riscv/riscv_data.c')
-rw-r--r-- | modules/devices/riscv/riscv_data.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/devices/riscv/riscv_data.c b/modules/devices/riscv/riscv_data.c index 4ae68ef4..917e8e06 100644 --- a/modules/devices/riscv/riscv_data.c +++ b/modules/devices/riscv/riscv_data.c @@ -93,7 +93,7 @@ const char *riscv_ext_meaning(const char *ext) { /* see RISC-V spec 2.2: Chapter 22: ISA Subset Naming Conventions */ -/* Spec says case-insensitve, but I prefer single-letter extensions +/* Spec says case-insensitive, but I prefer single-letter extensions * capped and version string (like "2p1") with a lowercase p. */ #define RV_FIX_CASE(fstr,vo) \ p = fstr; while (*p != 0 && *p != ':') { if (!vo) *p = toupper(*p); p++; } \ |