aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzlg <zlg@zlg.space>2017-05-20 22:48:50 -0700
committerzlg <zlg@zlg.space>2017-05-20 22:48:50 -0700
commitf3e194ceb2405d2063501bd46b270d988931d36b (patch)
tree4c25a9727fe236ac4a8775ae1f78eb28685f867e
parent8-1: Correct superfluous increment, comment (diff)
downloadknr-f3e194ceb2405d2063501bd46b270d988931d36b.tar.gz
knr-f3e194ceb2405d2063501bd46b270d988931d36b.tar.bz2
knr-f3e194ceb2405d2063501bd46b270d988931d36b.tar.xz
knr-f3e194ceb2405d2063501bd46b270d988931d36b.zip
perfeeerrrrrm
Diffstat (limited to '')
-rw-r--r--ch8/8-01_cat-remastered.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ch8/8-01_cat-remastered.c b/ch8/8-01_cat-remastered.c
index 53dd03e..8ad6d5a 100644
--- a/ch8/8-01_cat-remastered.c
+++ b/ch8/8-01_cat-remastered.c
@@ -8,7 +8,7 @@
*
* Exercise 8-1: Rewrite the program `cat` from Chapter 7 using read(),
* write(), open(), and close() instead of their standard library
- * equivalents. Perferm experiments to determine the relative speeds of
+ * equivalents. Perform experiments to determine the relative speeds of
* the two versions.
*
* Notes: The `cat` program can be found on pp 162-163 in the book.