Minor edit to comment
authorTom Jackson <tjackson@fb.com>
Fri, 30 May 2014 18:52:55 +0000 (11:52 -0700)
committerAnton Likhtarov <alikhtarov@fb.com>
Mon, 9 Jun 2014 22:35:19 +0000 (15:35 -0700)
Summary: I was confused by it, thought rephrasing might help.

Test Plan: Read

Reviewed By: tudorb@fb.com

Subscribers: folly@lists

FB internal diff: D1315612

folly/MemoryMapping.h

index 51b5e8904824e0daa1838130314357ce86e99b82..fa8d51a58cee95a5c1e90618fca607e1fde3d21a 100644 (file)
@@ -70,8 +70,8 @@ class MemoryMapping : boost::noncopyable {
 
     // If shared (default), the memory mapping is shared with other processes
     // mapping the same file (or children); if not shared (private), each
-    // process has its own mapping; if the mapping is writable, the changes
-    // are not reflected to the underlying file. See the discussion of
+    // process has its own mapping. Changes in writable, private mappings are
+    // not reflected to the underlying file. See the discussion of
     // MAP_PRIVATE vs MAP_SHARED in the mmap(2) manual page.
     bool shared = true;