Index: base/allocator/README.md |
diff --git a/base/allocator/README.md b/base/allocator/README.md |
index 445fe1696943c9a9e48932abf87eb7f78e4d071c..a0bc24aaf62efd94cfe0ef6c2324c29c7f7d2f69 100644 |
--- a/base/allocator/README.md |
+++ b/base/allocator/README.md |
@@ -15,14 +15,14 @@ Background |
---------- |
The `allocator` target defines at compile-time the platform-specific choice of |
the allocator and extra-hooks which services calls to malloc/new. The relevant |
-build-time flags involved are `use_allocator` and `win_use_allocator_shim`. |
+build-time flags involved are `use_allocator` and `use_allocator_shim`. |
The default choices are as follows: |
**Windows** |
`use_allocator: winheap`, the default Windows heap. |
Additionally, `static_library` (i.e. non-component) builds have a shim |
-layer wrapping malloc/new, which is controlled by `win_use_allocator_shim`. |
+layer wrapping malloc/new, which is controlled by `use_allocator_shim`. |
The shim layer provides extra security features, such as preventing large |
allocations that can hit signed vs. unsigned bugs in third_party code. |