From db14b7e3a22ef5bc7a20fdc399a87262f37d881c Mon Sep 17 00:00:00 2001 From: Sebastian Boblest Date: Thu, 3 Mar 2022 17:44:55 +0100 Subject: [PATCH] just a typo fixed (#10442) * minor typo fixed * to trigger CI * to trigger CI * fixed formatting issues * black formatted file --- src/printer/doc.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/printer/doc.cc b/src/printer/doc.cc index 4b22d54448c2..792c22420ae4 100644 --- a/src/printer/doc.cc +++ b/src/printer/doc.cc @@ -52,7 +52,7 @@ class DocText : public DocAtom { public: explicit DocText(std::string str) { if (str.find_first_of("\t\n") != str.npos) { - LOG(WARNING) << "text node: '" << str << "' should not has tab or newline."; + LOG(WARNING) << "text node: '" << str << "' should not have tab or newline."; } data_ = runtime::make_object(str); }