From 9a9e958955120efa448c7c2a0b962d39478ce197 Mon Sep 17 00:00:00 2001 From: Andrew Pardoe Date: Mon, 22 Aug 2016 10:49:29 -0700 Subject: [PATCH] Manually fixed PR #657 --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index badb62a..be1094e 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -654,7 +654,7 @@ Also, it is implicit that `f2()` is supposed to `delete` its argument (or did th The standard library resource management pointers fail to pass the size when they point to an object: // separately compiled, possibly dynamically loaded - // NB: this assumes the calling code is A BI-compatible, using a + // NB: this assumes the calling code is ABI-compatible, using a // compatible C++ compiler and the same stdlib implementation extern void f3(unique_ptr, int n);