diff options
author | gatecat <gatecat@ds0.me> | 2021-12-14 08:54:09 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-14 08:54:09 +0000 |
commit | 73a7406211022a434ba2902afc3ccbe3dc6169b4 (patch) | |
tree | 12abb93efcf44cb3f468b4de20493382fa58c857 | |
parent | 8720d79f21ac052138426b3268981ccd1926342a (diff) | |
parent | fdf26e698f751c92445a0323d7892869598ca9ce (diff) | |
download | nextpnr-73a7406211022a434ba2902afc3ccbe3dc6169b4.tar.gz nextpnr-73a7406211022a434ba2902afc3ccbe3dc6169b4.tar.bz2 nextpnr-73a7406211022a434ba2902afc3ccbe3dc6169b4.zip |
Merge pull request #871 from yrabbit/english
gowin: Fix spelling of messages
-rw-r--r-- | gowin/arch.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gowin/arch.cc b/gowin/arch.cc index 6641df72..99e0ce61 100644 --- a/gowin/arch.cc +++ b/gowin/arch.cc @@ -705,7 +705,7 @@ Arch::Arch(ArchArgs args) : args(args) } } if (package_name == IdString()) { - log_error("Unsuported partnumber '%s'.\n", args.partnumber.c_str()); + log_error("Unsupported partnumber '%s'.\n", args.partnumber.c_str()); } // setup timing info @@ -719,7 +719,7 @@ Arch::Arch(ArchArgs args) : args(args) } } if (speed == nullptr) { - log_error("Unsuported speed grade '%s'.\n", speed_id.c_str(this)); + log_error("Unsupported speed grade '%s'.\n", speed_id.c_str(this)); } const VariantPOD *variant = nullptr; @@ -732,7 +732,7 @@ Arch::Arch(ArchArgs args) : args(args) } } if (variant == nullptr) { - log_error("Unsuported device grade '%s'.\n", device_id.c_str(this)); + log_error("Unsupported device grade '%s'.\n", device_id.c_str(this)); } package = nullptr; @@ -750,7 +750,7 @@ Arch::Arch(ArchArgs args) : args(args) } if (package == nullptr) { - log_error("Unsuported package '%s'.\n", package_name.c_str(this)); + log_error("Unsupported package '%s'.\n", package_name.c_str(this)); } // |