summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2021-09-08 14:52:41 +0200
committerAlexey Kardashevskiy <aik@ozlabs.ru>2021-10-01 14:09:29 +1000
commit63d2f38ab6e78122113817890d4e8ed6f1912cf3 (patch)
tree23d6a7dc5b6793310c7c3089e8dac25d4bbe44ef
parente716481498168550512dea1bbcc129bbd781431a (diff)
downloadqemu-SLOF-63d2f38ab6e78122113817890d4e8ed6f1912cf3.tar.gz
lib/libc/README.txt: Fix "cannel" typo
It should be "channel" instead of "cannel", obviously. Signed-off-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
-rw-r--r--lib/libc/README.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/README.txt b/lib/libc/README.txt
index eaafdf4..c2b246a 100644
--- a/lib/libc/README.txt
+++ b/lib/libc/README.txt
@@ -29,7 +29,7 @@ library:
The stdio functions will print their output to the stdout channel which is
assigned with the file descriptor 1 by default. Note that the stdio
functions will not use open() before calling write(), so if the stdout
- cannel needs to be opened first, you should do that in your start-up code
+ channel needs to be opened first, you should do that in your start-up code
before using the libc functions for the first time.
3) Before you can use the stdio input functions like scanf() and the
@@ -44,6 +44,6 @@ library:
The stdio functions will get their input from the stdin channel which is
assigned with the file descriptor 0 by default. Note that the stdio
functions will not use open() before calling read(), so if the stdin
- cannel needs to be opened first, you should do that in your start-up code
+ channel needs to be opened first, you should do that in your start-up code
before using the libc functions for the first time.