diff --git a/docs/ExtendingLLVM.html b/docs/ExtendingLLVM.html
index 6aece2ff9ce..ef784982ef7 100644
--- a/docs/ExtendingLLVM.html
+++ b/docs/ExtendingLLVM.html
@@ -194,11 +194,8 @@ installations. Only add new types if it is absolutely necessary.
-- llvm/include/llvm/Type.def:
- add enum for the type
-
- llvm/include/llvm/Type.h:
- add ID number for the new type; add static Type* for this type
+ add enum for the new type; add static Type* for this type
- llvm/lib/VMCore/Type.cpp:
add mapping from TypeID => Type*;
@@ -222,11 +219,8 @@ installations. Only add new types if it is absolutely necessary.
-- llvm/include/llvm/Type.def:
- add enum for the type
-
- llvm/include/llvm/Type.h:
- add ID number for the new type; add a forward declaration of the type
+ add enum for the new type; add a forward declaration of the type
also
- llvm/include/llvm/DerivedType.h: