From b47d91e858768efb95f877740820fb7afdb321a8 Mon Sep 17 00:00:00 2001 From: Ben Briant <56101269+ben-briant@users.noreply.github.com> Date: Sun, 5 Jun 2022 22:38:09 +1000 Subject: [PATCH] Replace literal newline with newline char --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index d8ded60..8b4dec7 100644 --- a/README.md +++ b/README.md @@ -53,8 +53,7 @@ Available checkers include: | **`global_variable`** | check global variables used | | **`goto`** | check if goto used | | **`indenting`** | check indenting consistent with functions, and tabs/spaces not mixed within function | -| **`integer_ascii_code`** | check integer constants not used for ASCII codes e.g. 10 instead of ' | -| ' | +| **`integer_ascii_code`** | check integer constants not used for ASCII codes e.g. 10 instead of '\n' | | **`multiple_malloc`** | check if malloc is called in more than 1 location (for exercises where this is not permitted) | | **`non_char_array`** | check for use of array other than char array (for exercises where this is not permitted) | | **`static_local_variable`** | check for use of static local variables |