aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJamie Lenehan <lenehan@twibble.org>2007-07-25 10:18:54 +0000
committerJamie Lenehan <lenehan@twibble.org>2007-07-25 10:18:54 +0000
commita28f7719c1add024123052acc2bff773aba4b5d0 (patch)
tree5c111d7c5ee6f7b896c285f160faaeca4f8fe719
parentd5287ff805fc21056da56e24ba7bd3c051074004 (diff)
downloadopenembedded-a28f7719c1add024123052acc2bff773aba4b5d0.tar.gz
usermanual: Fix some typos in the helloworld example. Closes #2681.
-rw-r--r--usermanual/chapters/recipes.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/usermanual/chapters/recipes.xml b/usermanual/chapters/recipes.xml
index 5693b825b9..c1ca456fa0 100644
--- a/usermanual/chapters/recipes.xml
+++ b/usermanual/chapters/recipes.xml
@@ -1082,8 +1082,8 @@ ${FILE_DIRNAME}/${PN}:${FILE_DIRNAME}/files:${FILE_DIRNAME}"</screen></para>
<para>First we'll create the myhelloworld.c file and a readme file.
We'll place this in the files subdirectory, which is one of the places
that is searched for file:// URI's:<screen>mkdir packages/myhelloworld
-mkdir pacakges/myhelloworld/files
-cat &gt; pacakges/myhelloworld/files/myhelloworld.c
+mkdir packages/myhelloworld/files
+cat &gt; packages/myhelloworld/files/myhelloworld.c
#include &lt;stdio.h&gt;
int main(int argc, char** argv)
@@ -1092,7 +1092,7 @@ int main(int argc, char** argv)
return 0;
}
^D
-cat &gt; pacakges/myhelloworld/files/README.txt
+cat &gt; packages/myhelloworld/files/README.txt
Readme file for myhelloworld.
^D</screen></para>