From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id DFAF111C5 for ; Thu, 2 Jul 2015 16:15:25 +0200 (CEST) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga103.jf.intel.com with ESMTP; 02 Jul 2015 07:15:24 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.15,393,1432623600"; d="scan'208";a="739286809" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by fmsmga001.fm.intel.com with ESMTP; 02 Jul 2015 07:15:23 -0700 Received: from sivswdev02.ir.intel.com (sivswdev02.ir.intel.com [10.237.217.46]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id t62EFM05029745; Thu, 2 Jul 2015 15:15:22 +0100 Received: from sivswdev02.ir.intel.com (localhost [127.0.0.1]) by sivswdev02.ir.intel.com with ESMTP id t62EFM4Q024767; Thu, 2 Jul 2015 15:15:22 +0100 Received: (from jmcnam2x@localhost) by sivswdev02.ir.intel.com with id t62EFMEI024763; Thu, 2 Jul 2015 15:15:22 +0100 From: John McNamara To: dev@dpdk.org Date: Thu, 2 Jul 2015 15:15:22 +0100 Message-Id: <1435846522-24732-1-git-send-email-john.mcnamara@intel.com> X-Mailer: git-send-email 1.7.4.1 Subject: [dpdk-dev] [PATCH v2] doc: fix minor sphinx build warning X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jul 2015 14:15:26 -0000 Fix for a minor Sphinx build warning in the ABI guidelines docs: versioning.rst:126: WARNING: Bullet list ends without a blank line; unexpected unindent. Signed-off-by: John McNamara --- doc/guides/guidelines/versioning.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/guides/guidelines/versioning.rst b/doc/guides/guidelines/versioning.rst index a1c9368..ea789cb 100644 --- a/doc/guides/guidelines/versioning.rst +++ b/doc/guides/guidelines/versioning.rst @@ -122,9 +122,9 @@ The macros exported are: the linker to bind references to symbol ``b`` to the internal symbol ``b_e``. -* ``MAP_STATIC_SYMBOL(f, p)``: Declare the prototype ``f``, and map it to the fully -qualified function ``p``, so that if a symbol becomes versioned, it can still be -mapped back to the public symbol name. +* ``MAP_STATIC_SYMBOL(f, p)``: Declare the prototype ``f``, and map it to the + fully qualified function ``p``, so that if a symbol becomes versioned, it + can still be mapped back to the public symbol name. Examples of ABI Macro use ------------------------- -- 1.8.1.4 V2: Removed main heading label.