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!