aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Archive
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-11-16 07:05:16 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-11-16 07:05:16 +0000
commit30e4056a5d9be0ff60702b609b1fa404899197b7 (patch)
treeaebb92ff6403d36f440025bb0cd9e2055d625844 /lib/Archive
parent56d3cdbd21452f4fa39ef87f0ed9d4ffbcd78c3f (diff)
downloadexternal_llvm-30e4056a5d9be0ff60702b609b1fa404899197b7.zip
external_llvm-30e4056a5d9be0ff60702b609b1fa404899197b7.tar.gz
external_llvm-30e4056a5d9be0ff60702b609b1fa404899197b7.tar.bz2
Fix typeo in comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17892 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Archive')
-rw-r--r--lib/Archive/ArchiveWriter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Archive/ArchiveWriter.cpp b/lib/Archive/ArchiveWriter.cpp
index e737a04..636d632 100644
--- a/lib/Archive/ArchiveWriter.cpp
+++ b/lib/Archive/ArchiveWriter.cpp
@@ -46,7 +46,7 @@ inline unsigned numVbrBytes(unsigned num) {
// search. We split it in half by comparing against 2^14 first. This allows
// most reasonable values to be done in 2 comparisons instead of 1 for
// small ones and four for large ones. We expect this to access file offsets
- // in the 2^10 to 2^24 range and symbol lengths in the 2^0 to 2^8 rnage,
+ // in the 2^10 to 2^24 range and symbol lengths in the 2^0 to 2^8 range,
// so this approach is reasonable.
if (num < 1<<14)
if (num < 1<<7)