diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2010-12-01 17:06:59 -0500 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2010-12-01 17:06:59 -0500 |
commit | c7580613596de6004ecf65b40abbff973c34aa6a (patch) | |
tree | cc4928c143c39729069dd97c2f38d78ed7c15071 | |
parent | ea2eabcec82d67461d06e19c96ae30248e0e5105 (diff) | |
download | deheader-c7580613596de6004ecf65b40abbff973c34aa6a.tar.gz deheader-c7580613596de6004ecf65b40abbff973c34aa6a.tar.bz2 deheader-c7580613596de6004ecf65b40abbff973c34aa6a.tar.xz deheader-c7580613596de6004ecf65b40abbff973c34aa6a.zip |
Typo fixes.
-rw-r--r-- | control | 2 | ||||
-rwxr-xr-x | deheader | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -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 @@ -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 |