diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html
index db042dcaea0..13fe9f57fbd 100644
--- a/docs/ProgrammersManual.html
+++ b/docs/ProgrammersManual.html
@@ -1173,7 +1173,7 @@ into a BasicBlock), and it has no name.
\end{itemize}
LoadInst, StoreInst, GetElemPtrInst : These subclasses represent load, store and getelementptr instructions in LLVM.
\begin{itemize}
- Value * getPointerOperand (): Returns the Pointer Operand which is typically the 0th operand.
+ Value * getPointerOperand(): Returns the Pointer Operand which is typically the 0th operand.
\end{itemize}
BranchInst : This is a subclass of TerminatorInst and defines the interface for conditional and unconditional branches in LLVM.
\begin{itemize}
@@ -1641,39 +1641,39 @@ ConstantArray etc for representing the various types of Constants.
bool isConstantExpr(): Returns true if it is a ConstantExpr
+
+Important Subclasses of Constant
-
-\subsection{Important Subclasses of Constant}
-\begin{itemize}
+
- ConstantSInt : This subclass of Constant represents a signed integer constant.
- \begin{itemize}
-
- int64_t getValue () const: Returns the underlying value of this constant.
- \end{itemize}
+
+ - int64_t getValue() const: Returns the underlying value of this constant.
+
- ConstantUInt : This class represents an unsigned integer.
- \begin{itemize}
-
- uint64_t getValue () const: Returns the underlying value of this constant.
- \end{itemize}
+
+ - uint64_t getValue() const: Returns the underlying value of this constant.
+
- ConstantFP : This class represents a floating point constant.
- \begin{itemize}
-
- double getValue () const: Returns the underlying value of this constant.
- \end{itemize}
+
+ - double getValue() const: Returns the underlying value of this constant.
+
- ConstantBool : This represents a boolean constant.
- \begin{itemize}
-
- bool getValue () const: Returns the underlying value of this constant.
- \end{itemize}
+
+ - bool getValue() const: Returns the underlying value of this constant.
+
- ConstantArray : This represents a constant array.
- \begin{itemize}
+
- const std::vector: Returns a Vecotr of component constants that makeup this array.
- \end{itemize}
+
- ConstantStruct : This represents a constant struct.
- \begin{itemize}
+
- const std::vector: Returns a Vecotr of component constants that makeup this array.
- \end{itemize}
+
- ConstantPointerRef : This represents a constant pointer value that is initialized to point to a global value, which lies at a constant fixed address.
- \begin{itemize}
+
- GlobalValue *getValue(): Returns the global value to which this pointer is pointing to.
- \end{itemize}
-\end{itemize}
+
+
@@ -1694,45 +1694,48 @@ of any type structure at a time. This allows using pointer equality of Type *s f