README: fix block quote

This commit is contained in:
Andrew Scott 2024-08-21 15:24:13 -04:00
parent 7a60c424be
commit ea7738bcf8
Signed by: a
GPG key ID: 7CD5A5977E4931C1

View file

@ -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!