diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/json.cc | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 23accf3..6bdbaae 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2018-11-09 David Malcolm <dmalcolm@redhat.com> + + * json.cc (selftest::test_writing_literals): Fix comment. + 2018-11-09 Martin Liska <mliska@suse.cz> * config/aarch64/aarch64.c (aarch64_parse_arch): Do not copy diff --git a/gcc/json.cc b/gcc/json.cc index a0c43956..46b6ef6 100644 --- a/gcc/json.cc +++ b/gcc/json.cc @@ -288,7 +288,7 @@ test_writing_strings () assert_print_eq (contains_quotes, "\"before \\\"quoted\\\" after\""); } -/* Verify that JSON strings are written correctly. */ +/* Verify that JSON literals are written correctly. */ static void test_writing_literals () |