From 7eae11136846a008040e4a91c235121173d594e8 Mon Sep 17 00:00:00 2001 From: Marat Fayzullin Date: Fri, 25 Aug 2023 13:26:46 -0400 Subject: [PATCH] Fixing typos. --- owrx/feature.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/owrx/feature.py b/owrx/feature.py index 5e3aae04..0ca2b7d4 100644 --- a/owrx/feature.py +++ b/owrx/feature.py @@ -600,16 +600,16 @@ class FeatureDetector(object): def has_dumphfdl(self): """ - OpenWebRX uses the [dumphfdl](https://github.com/szpajder/dumphfdl) tool to decode HFDL - aircraft communications. Dumphfdl is not yet available as a package and thus you will have + OpenWebRX uses the [DumpHFDL](https://github.com/szpajder/dumphfdl) tool to decode HFDL + aircraft communications. DumpHFDL is not yet available as a package and thus you will have to compile it from source. """ return self.command_is_runnable("dumphfdl --help") def has_dumpvdl2(self): """ - OpenWebRX uses the [dumphfdl](https://github.com/szpajder/dumpvdl2) tool to decode VDL2 - aircraft communications. Dumpvdl2 is not yet available as a package and thus you will have + OpenWebRX uses the [DumpVDL2](https://github.com/szpajder/dumpvdl2) tool to decode VDL2 + aircraft communications. DumpVDL2 is not yet available as a package and thus you will have to compile it from source. """ return self.command_is_runnable("dumpvdl2 --help")