fixed spellcheck/lint issues on running make in ./scripts/ (#1134)

This commit is contained in:
Dipl.-Ing. Raoul Rubien, BSc
2018-01-24 17:12:05 +01:00
committed by Andrew Pardoe
parent 25d9d12e15
commit 888067d6ff
2 changed files with 2 additions and 1 deletions

View File

@@ -20207,7 +20207,7 @@ Minimize unintentional conversions.
##### Example, good
void print(int i);
void print(string_view); // also works on any stringlike sequence
void print(string_view); // also works on any string-like sequence
print(1); // clear, automatic type matching
print("xyzzy"); // clear, automatic type matching