diff --git a/src/lib/input/OVERVIEW.md b/src/lib/input/OVERVIEW.md
index 680cb524ed93..ebd0750035f8 100644
--- a/src/lib/input/OVERVIEW.md
+++ b/src/lib/input/OVERVIEW.md
@@ -50,8 +50,8 @@ attribute on the `input` or `textarea`, or using an `md-placeholder` element in
HTML can be included before, and after the input tag, as prefix or suffix. It will be underlined as
per the Material specification, and clicking it will focus the input.
-Adding the `md-prefix` attribute to an element inside the `md-input-container` will designate it as
-the prefix. Similarly, adding `md-suffix` will designate it as the suffix.
+Adding the `mdPrefix` attribute to an element inside the `md-input-container` will designate it as
+the prefix. Similarly, adding `mdSuffix` will designate it as the suffix.
### Hint Labels
diff --git a/src/lib/input/README.md b/src/lib/input/README.md
index 95a5be865ee3..6bba8daeb33b 100644
--- a/src/lib/input/README.md
+++ b/src/lib/input/README.md
@@ -68,14 +68,14 @@ attribute on the `input` or `textarea`, or using an `md-placeholder` element in
You can include HTML before, and after the input tag, as prefix or suffix. It will be underlined as
per the Material specification, and clicking it will focus the input.
-To add a prefix, use the `md-prefix` attribute on the element. Similarly, to add a suffix, use the
-`md-suffix` attribute. For example, in a template:
+To add a prefix, use the `mdPrefix` attribute on the element. Similarly, to add a suffix, use the
+`mdSuffix` attribute. For example, in a template:
```html
- $
- .00
+ $
+ .00
```
diff --git a/src/lib/input/input-container.html b/src/lib/input/input-container.html
index 04f0f8ee1d16..9601f7d86505 100644
--- a/src/lib/input/input-container.html
+++ b/src/lib/input/input-container.html
@@ -1,6 +1,6 @@