File: 00-fix-spell.patch

package info (click to toggle)
qtrvsim 0.9.8-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,844 kB
  • sloc: cpp: 25,687; ansic: 7,754; makefile: 318; python: 303; sh: 278; asm: 268; xml: 9
file content (17 lines) | stat: -rw-r--r-- 608 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Description: fix spell issue
Author: Bo YU <tsu.yubo@gmail.com>
Forwarded: https://github.com/cvut/qtrvsim/pull/158
Last-Update: 2025-02-12
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/src/assembler/fixmatheval.cpp
+++ b/src/assembler/fixmatheval.cpp
@@ -318,7 +318,7 @@
                     break;
                 }
             } else {
-                error = QString("Unknow character \"%1\" in expression.").arg(ch);
+                error = QString("Unknown character \"%1\" in expression.").arg(ch);
                 ok = false;
                 break;
             }