From 353bf8dc3c9594a0668a1125f02c10f701160895 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Alvarez?= Date: Mon, 7 Dec 2015 13:47:26 -0300 Subject: [PATCH] Fix spelling in --seek option documentation. --- README.md | 2 +- doc/man/alpr.1 | 2 +- src/main.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 004f11d..8de46ee 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ Where: Max number of possible plate numbers to return. Default=10 --seek - Seek to the specied millisecond in a video file. Default=0 + Seek to the specified millisecond in a video file. Default=0 -p , --pattern Attempt to match the plate number against a plate pattern (e.g., md diff --git a/doc/man/alpr.1 b/doc/man/alpr.1 index 8f18975..e412cd3 100644 --- a/doc/man/alpr.1 +++ b/doc/man/alpr.1 @@ -44,7 +44,7 @@ Where: Max number of possible plate numbers to return. Default=10 \-\-seek - Seek to the specied millisecond in a video file. Default=0 + Seek to the specified millisecond in a video file. Default=0 \-p , \-\-pattern Attempt to match the plate number against a plate pattern (e.g., md diff --git a/src/main.cpp b/src/main.cpp index d4aab0c..b8d1e27 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -70,7 +70,7 @@ int main( int argc, const char** argv ) TCLAP::ValueArg countryCodeArg("c","country","Country code to identify (either us for USA or eu for Europe). Default=us",false, "us" ,"country_code"); - TCLAP::ValueArg seekToMsArg("","seek","Seek to the specied millisecond in a video file. Default=0",false, 0 ,"integer_ms"); + TCLAP::ValueArg seekToMsArg("","seek","Seek to the specified millisecond in a video file. Default=0",false, 0 ,"integer_ms"); TCLAP::ValueArg configFileArg("","config","Path to the openalpr.conf file",false, "" ,"config_file"); TCLAP::ValueArg templatePatternArg("p","pattern","Attempt to match the plate number against a plate pattern (e.g., md for Maryland, ca for California)",false, "" ,"pattern code"); TCLAP::ValueArg topNArg("n","topn","Max number of possible plate numbers to return. Default=10",false, 10 ,"topN");