From ea7738bcf89262f86b0ae0009ae7d8f801b40e70 Mon Sep 17 00:00:00 2001 From: Andrew Scott Date: Wed, 21 Aug 2024 15:24:13 -0400 Subject: [PATCH] README: fix block quote --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index f528458..bd3e182 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ allocations. Compiling the project should be relatively easy, even if you aren't familiar with `make`. -Dependences: `git`, `make`, and `gcc`. Compiling with `clang` is also possible, +Dependencies: `git`, `make`, and `gcc`. Compiling with `clang` is also possible, simply replace "gcc" with "clang" in the first line of the Makefile. ``` @@ -34,12 +34,12 @@ cd build # or debug By default the program will output the results of the test cases: -> test_int_alloc: PASS -> test_pair_alloc: PASS -> test_obj_count: PASS -> test_pair_alloc: PASS -> test_unreachable: PASS -> test_auto_gc: PASS +> test_int_alloc: PASS +test_pair_alloc: PASS +test_obj_count: PASS +test_pair_alloc: PASS +test_unreachable: PASS +test_auto_gc: PASS If all six tests pass, then the library compiles correctly on your system and should be ready for experimentation!