浏览代码

Fix a comment.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29590 91177308-0d34-0410-b5e6-96231b3b80d8
Reid Spencer 19 年之前
父节点
当前提交
a7465cafeb
共有 1 个文件被更改,包括 1 次插入2 次删除
  1. 1 2
      utils/findsym.pl

+ 1 - 2
utils/findsym.pl

@@ -5,14 +5,13 @@
 # Synopsis: Generate a list of the libraries in which a symbol is defined or
 #           referenced.
 #
-# Syntax:   GenLibDeps.pl <directory_with_libraries_in_it> <symbol>
+# Syntax:   findsym.pl <directory_with_libraries_in_it> <symbol>
 #
 
 # Give first option a name.
 my $Directory = $ARGV[0];
 my $Symbol = $ARGV[1];
 
-
 # Open the directory and read its contents, sorting by name and differentiating
 # by whether its a library (.a) or an object file (.o)
 opendir DIR,$Directory;