From: Misha Brukman Date: Tue, 20 May 2003 18:39:06 +0000 (+0000) Subject: The plural of `Pass' is Passes, not Pass's. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=d5bd008265c57b31d6496a105e925168c67aaeed;p=oota-llvm.git The plural of `Pass' is Passes, not Pass's. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6247 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/PassManager.h b/include/llvm/PassManager.h index ae603b1828d..f67d9da1a32 100644 --- a/include/llvm/PassManager.h +++ b/include/llvm/PassManager.h @@ -1,7 +1,7 @@ //===- llvm/PassManager.h - Container for Passes -----------------*- C++ -*--=// // // This file defines the PassManager class. This class is used to hold, -// maintain, and optimize execution of Pass's. The PassManager class ensures +// maintain, and optimize execution of Passes. The PassManager class ensures // that analysis results are available before a pass runs, and that Pass's are // destroyed when the PassManager is destroyed. //