From 957e30052499ebf303d22ec37a950869ee34846c Mon Sep 17 00:00:00 2001 From: fu7mu4 Date: Thu, 18 Mar 2021 18:43:22 +0900 Subject: [PATCH] Does it have syntax hilight I think that the "it" means the variable in the code. If so, the it should have syntax-hilight --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0c689cf..ee6ef47 100644 --- a/README.md +++ b/README.md @@ -118,7 +118,7 @@ bool valid_utf8_file(const char* file_name) } ``` -Because the function `utf8::is_valid()` works with input iterators, we were able to pass an `istreambuf_iterator` to it and read the content of the file directly without loading it to the memory first. +Because the function `utf8::is_valid()` works with input iterators, we were able to pass an `istreambuf_iterator` to `it` and read the content of the file directly without loading it to the memory first. Note that other functions that take input iterator arguments can be used in a similar way. For instance, to read the content of a UTF-8 encoded text file and convert the text to UTF-16, just do something like: