summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2010-12-01 17:06:59 -0500
committerEric S. Raymond <esr@thyrsus.com>2010-12-01 17:06:59 -0500
commitc7580613596de6004ecf65b40abbff973c34aa6a (patch)
treecc4928c143c39729069dd97c2f38d78ed7c15071
parentea2eabcec82d67461d06e19c96ae30248e0e5105 (diff)
downloaddeheader-c7580613596de6004ecf65b40abbff973c34aa6a.tar.gz
deheader-c7580613596de6004ecf65b40abbff973c34aa6a.tar.bz2
deheader-c7580613596de6004ecf65b40abbff973c34aa6a.tar.xz
deheader-c7580613596de6004ecf65b40abbff973c34aa6a.zip
Typo fixes.
-rw-r--r--control2
-rwxr-xr-xdeheader2
2 files changed, 2 insertions, 2 deletions
diff --git a/control b/control
index de2b17a..45eef51 100644
--- a/control
+++ b/control
@@ -3,7 +3,7 @@
Package: deheader
-Description: lift documents in nroff markups to XML-DocBook
+Description: find (optionally remove) unneeded includes in C or C++ sourcefiles
deheader analyzes C and C++ files to determine which header enclusions can be
removed while still allowing them to compile. This may result in substantial
improvements in compilation time, especially on large C++ projects; it also
diff --git a/deheader b/deheader
index 0ce7e22..c75144b 100755
--- a/deheader
+++ b/deheader
@@ -70,7 +70,7 @@ def c_source(filename):
return filename.endswith(".c") or filename.endswith(".cpp")
class InclusionMap:
- "Map the inclusion dependebies of a set of files and directories."
+ "Map the inclusion dependencies of a set of files and directories."
def __init__(self, roots, ignore, verbosity):
"Build the initial inclusion map."
self.verbosity = verbosity