[docs] Fix yet another Error docs formatting issue...
authorLang Hames <lhames@gmail.com>
Tue, 25 Oct 2016 22:38:50 +0000 (22:38 +0000)
committerLang Hames <lhames@gmail.com>
Tue, 25 Oct 2016 22:38:50 +0000 (22:38 +0000)
llvm-svn: 285137

llvm/docs/ProgrammersManual.rst

index b5386d0..c1081f1 100644 (file)
@@ -399,7 +399,8 @@ operator. If failure, the ``Error`` value can be extracted using the
       // On success, grab a reference to the file and continue.
       auto &File = *FileOrErr;
       // ...
-    } else
    // On error, extract the Error value and return it.
+    } else
+      // On error, extract the Error value and return it.
       return FileOrErr.takeError();
   }