Merge pull request #1762 from stweil/typo

Fix some typos in comments and documentation
This commit is contained in:
zdenop 2018-07-06 22:11:23 +02:00 committed by GitHub
commit 446453a360
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -159,7 +159,7 @@ class IntParam : public Param {
private:
int32_t value_;
int32_t default_;
// Pointer to the vector that contains this param (not owened by this class).
// Pointer to the vector that contains this param (not owned by this class).
GenericVector<IntParam *> *params_vec_;
};
@ -212,7 +212,7 @@ class StringParam : public Param {
private:
STRING value_;
STRING default_;
// Pointer to the vector that contains this param (not owened by this class).
// Pointer to the vector that contains this param (not owned by this class).
GenericVector<StringParam *> *params_vec_;
};

View File

@ -88,7 +88,7 @@ or if you've already got a results file you want to change, you can do this:
awk '$3 != 100 {print $0}' results.txt newresults.txt
If you only want the last sections where things are broken down by
word, you can add a sed commend, like this:
word, you can add a sed command, like this:
ocrevalutf8 wordacc ground.txt ocr.txt | sed '/^ Count Missed %Right $/,$
!d' | awk '$3 != 100 {print $0}' results.txt