]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
correct typo in ??= documentation
authorDarren Hart <dvhart@linux.intel.com>
Wed, 13 Apr 2011 00:11:52 +0000 (17:11 -0700)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 6 May 2011 14:32:53 +0000 (15:32 +0100)
??= is a lazy version of ?=

(From Poky rev: 2ee0be82d065aeee716a9c0289bf111ea121e6dc)

Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
doc/manual/usermanual.xml

index b2740c2e0e13ba48c8e74c6d24ce6dc651bd9b7b..a3e85e14f92908a8d92f54b890b023ec07f8b22b 100644 (file)
@@ -97,7 +97,7 @@ share common metadata between many packages.</para></listitem>
                 <title>Setting a default value (??=)</title>
                 <para><screen><varname>A</varname> ??= "somevalue"</screen></para>
                 <para><screen><varname>A</varname> ??= "someothervalue"</screen></para>
-                <para>If <varname>A</varname> is set before the above, it will retain that value.  If <varname>A</varname> is unset prior to the above, <varname>A</varname> will be set to <literal>someothervalue</literal>.  This is a lazy version of ??=, in that the assignment does not occur until the end of the parsing process, so that the last, rather than the first, ??= assignment to a given variable will be used.</para>
+                <para>If <varname>A</varname> is set before the above, it will retain that value.  If <varname>A</varname> is unset prior to the above, <varname>A</varname> will be set to <literal>someothervalue</literal>.  This is a lazy version of ?=, in that the assignment does not occur until the end of the parsing process, so that the last, rather than the first, ??= assignment to a given variable will be used.</para>
             </section>
             <section>
                 <title>Immediate variable expansion (:=)</title>