From b2a1f43514abab1aa3e03cdefa8d10cbc8919a83 Mon Sep 17 00:00:00 2001 From: David Chisnall Date: Fri, 2 Aug 2019 12:18:42 +0100 Subject: [PATCH] [NFC] Fix typos. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b459263..23d49db 100644 --- a/README.md +++ b/README.md @@ -129,7 +129,7 @@ The PAL must implement the following methods: ```c++ void error(const char* const str); ``` -Report a fatal error and exit +Report a fatal error and exit. ```c++ void notify_not_using(void* p, size_t size) noexcept; @@ -198,7 +198,7 @@ Typically, a PAL will implement at least one of the functions outlined above in a more-efficient platform-specific way, but this is not required. Non-POSIX systems will need to implement the entire PAL interface. The [Windows](src/pal/pal_windows.h), and -[OpenEnclave](src/pal/pal_open_enclave) and +[OpenEnclave](src/pal/pal_open_enclave.h) and [FreeBSD kernel](src/pal/pal_freebsd_kernel.h) implementations give examples of non-POSIX environments that snmalloc supports.