Fix a typo: isvalid -> isValid
authorReid Spencer <rspencer@reidspencer.com>
Mon, 8 Nov 2004 08:27:51 +0000 (08:27 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Mon, 8 Nov 2004 08:27:51 +0000 (08:27 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17621 91177308-0d34-0410-b5e6-96231b3b80d8

lib/System/FreeBSD/Path.cpp

index 21bc4e17659dfe7d9338384249666f5d178221c5..7dac6fd5e98c676b3376860522d8498ee31aafbd 100644 (file)
@@ -23,7 +23,7 @@ namespace llvm {
 using namespace sys;
 
 bool 
-Path::isvalid() const {
+Path::isValid() const {
   if (path.empty()) 
     return false;
   char pathname[MAXPATHLEN];