From patchwork Wed May 18 21:55:52 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jonathan Wakely X-Patchwork-Id: 96261 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id 2A60F10086D for ; Thu, 19 May 2011 07:56:34 +1000 (EST) Received: (qmail 5961 invoked by alias); 18 May 2011 21:56:31 -0000 Received: (qmail 5948 invoked by uid 22791); 18 May 2011 21:56:29 -0000 X-SWARE-Spam-Status: No, hits=-2.4 required=5.0 tests=AWL, BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, RFC_ABUSE_POST X-Spam-Check-By: sourceware.org Received: from mail-pv0-f175.google.com (HELO mail-pv0-f175.google.com) (74.125.83.175) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 18 May 2011 21:55:53 +0000 Received: by pvc30 with SMTP id 30so996627pvc.20 for ; Wed, 18 May 2011 14:55:52 -0700 (PDT) MIME-Version: 1.0 Received: by 10.142.144.5 with SMTP id r5mr1383332wfd.384.1305755752347; Wed, 18 May 2011 14:55:52 -0700 (PDT) Received: by 10.143.15.15 with HTTP; Wed, 18 May 2011 14:55:52 -0700 (PDT) Date: Wed, 18 May 2011 22:55:52 +0100 Message-ID: Subject: fix doc typos From: Jonathan Wakely To: "libstdc++" , gcc-patches Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org This patch fixes three occurrences of "it's" with an incorrect apostrophe. 2011-05-18 Jonathan Wakely * doc/xml/manual/bitmap_allocator.xml: Fix typos. tested with 'make doc-xml-validate-docbook' and committed to trunk I didn't bother regenerating the HTML for this, I'll do so next time I make a doc change. Index: doc/xml/manual/bitmap_allocator.xml =================================================================== --- doc/xml/manual/bitmap_allocator.xml (revision 173875) +++ doc/xml/manual/bitmap_allocator.xml (working copy) @@ -23,7 +23,7 @@ As this name suggests, this allocator uses a bit-map to keep track - of the used and unused memory locations for it's book-keeping + of the used and unused memory locations for its book-keeping purposes. @@ -84,7 +84,7 @@ free list if it exists. - Suppose the free list size has reached it's threshold, then the + Suppose the free list size has reached its threshold, then the largest block from among those in the list and the new block will be selected and given back to the OS. This is done because it reduces external fragmentation, and allows the OS to use the @@ -509,7 +509,7 @@ Constant time access for the bitmap themselves, since no kind of -look up will be needed to find the correct bitmap list or it's +look up will be needed to find the correct bitmap list or its equivalent. And also this would preserve the cache as far as possible.