diff --git a/README.md b/README.md
index 310b96e..0d27eda 100644
--- a/README.md
+++ b/README.md
@@ -66,7 +66,7 @@ export default Example;
| Name | Description | Type/Values | Required | Default | Example |
| :------------: | :-----------------------------------------------------------------------------: | :--------------: | :------: | :-----------: | :----------------------------------------------------------: |
| Children | Component that should animate | JSX Element | `true` | N/A | N/A |
-| ClassName | Extra classes for the marquee | string | `false` | N/A | N/A |
+| Class Name | Extra classes for the marquee | string | `false` | N/A | N/A |
| Duration | Duration for a loop to run in `ms`
**NOTE**: It changes with the `children` | number | `false` | 5000 | `duration={5000}` |
| Reverse | Direction of the marquee | boolean | `false` | false | `reverse={false}` |
| Background | Background color of the marquee
Accepts any color format as string | string | `false` | "transparent" | `background="#fafafa"`
`background="RGB(250, 250, 250)"` |
diff --git a/example/src/App.js b/example/src/App.js
index f8e1e7e..114eaf8 100644
--- a/example/src/App.js
+++ b/example/src/App.js
@@ -37,7 +37,7 @@ const Example = () => {