Fix typo in NOLINT-comment.

This commit is contained in:
tastytea 2019-10-28 06:46:34 +01:00
parent eb77d8fc75
commit ea585751fc
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ void URI::set_proxy()
proxy.host = matches[3];
if (!matches[4].empty())
{
// NOLINTNEXTLINE(google-runtime-lint) - Need to use same as stoul.
// NOLINTNEXTLINE(google-runtime-int) - Need to use same as stoul.
const unsigned long port = std::stoul(matches[4]);
if (port > 65535)
{