diff --git a/public/docs/js/latest/guide/making-components.jade b/public/docs/js/latest/guide/making-components.jade
index 356497e320..9c85c3ef58 100644
--- a/public/docs/js/latest/guide/making-components.jade
+++ b/public/docs/js/latest/guide/making-components.jade
@@ -1,16 +1,4 @@
.l-main-section
- p.
- Mission: By the end of this chapter, you should be able to create a child component and render
- it within a parent component. You should also be able to bind to the child component.
-
- .l-sub-section
- h3#section-examples Examples:
- ul
- li
- a(href='') TypeScript
- li
- a(href='') ES5
-
p.
As mentioned earlier, you build Angular applications as a tree of nested components. You've seen how to create
a top-level component. You add child components to a parent component by using them in the parent component's
diff --git a/public/docs/js/latest/guide/user-input.jade b/public/docs/js/latest/guide/user-input.jade
index 91eac57fe9..2f837680c0 100644
--- a/public/docs/js/latest/guide/user-input.jade
+++ b/public/docs/js/latest/guide/user-input.jade
@@ -1,14 +1,4 @@
.l-main-section
- p.
- Mission: By the end of this chapter, you should be able to add to a list on a page when a
- button is clicked and update the text displayed when the user types into a textbox.
- .l-sub-section
- h3#section-examples Examples:
- ul
- li
- a(href='') TypeScript
- li
- a(href='') ES5
p.
You can make your application respond to user input by associating events with functions in your controller
using the event syntax using () to surround the name of an event.