From 0ea5ccc7bc2bc48bd24d238fd31cf8ac3b77265c Mon Sep 17 00:00:00 2001 From: artemp Date: Thu, 27 Aug 2015 11:56:11 +0200 Subject: [PATCH] fix typo --- src/unicode.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unicode.cpp b/src/unicode.cpp index cf36f555f..dac9b29d7 100644 --- a/src/unicode.cpp +++ b/src/unicode.cpp @@ -39,7 +39,7 @@ transcoder::transcoder (std::string const& encoding) conv_ = ucnv_open(encoding.c_str(),&err); if (!U_SUCCESS(err)) { - // NOT: conv_ should be null on error so no need to call ucnv_close + // NOTE: conv_ should be null on error so no need to call ucnv_close throw std::runtime_error(std::string("could not create converter for ") + encoding); } }