From: Yaron Keren Date: Fri, 2 May 2014 08:26:30 +0000 (+0000) Subject: Code style fix from Duncan P. N. Exon Smith. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=74e9519ef9ff97f1d9f74085a4ba515dff354cd1;p=oota-llvm.git Code style fix from Duncan P. N. Exon Smith. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207831 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/ProgrammersManual.rst b/docs/ProgrammersManual.rst index d545cb2b347..8e6629ed49b 100644 --- a/docs/ProgrammersManual.rst +++ b/docs/ProgrammersManual.rst @@ -1755,7 +1755,7 @@ instruction uses (that is, the operands of the particular ``Instruction``): Instruction *pi = ...; - for (Use& U : pi->operands()) { + for (Use &U : pi->operands()) { Value *v = U.get(); // ... }