summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/fpdftext/fpdf_text_int_unittest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fpdftext/fpdf_text_int_unittest.cpp b/core/fpdftext/fpdf_text_int_unittest.cpp
index c1c29cde97..1510ebc06c 100644
--- a/core/fpdftext/fpdf_text_int_unittest.cpp
+++ b/core/fpdftext/fpdf_text_int_unittest.cpp
@@ -19,7 +19,7 @@ TEST(fpdf_text_int, CheckMailLink) {
// Check cases that fail to extract valid mail link.
const wchar_t* invalid_strs[] = {
L"",
- L"peter.pan" // '@' is required.
+ L"peter.pan", // '@' is required.
L"abc@server", // Domain name needs at least one '.'.
L"abc.@gmail.com", // '.' can not immediately precede '@'.
L"abc@xyz&q.org", // Domain name should not contain '&'.