diff --git a/app/app.iml b/app/app.iml
index 9ea9fc3..1321abd 100644
--- a/app/app.iml
+++ b/app/app.iml
@@ -73,13 +73,18 @@
* Drawable myDrawable = MaterialDrawableBuilder.with(context)
* .setIcon(IconValue.ACCESS_POINT)
diff --git a/materialiconlib/src/main/java/net/steamcrafted/materialiconlib/MaterialIconView.java b/materialiconlib/src/main/java/net/steamcrafted/materialiconlib/MaterialIconView.java
index f89341b..8b858e3 100644
--- a/materialiconlib/src/main/java/net/steamcrafted/materialiconlib/MaterialIconView.java
+++ b/materialiconlib/src/main/java/net/steamcrafted/materialiconlib/MaterialIconView.java
@@ -112,8 +112,6 @@ public void setIcon(MaterialDrawableBuilder.IconValue iconValue){
/**
* Set the size of this icon to the standard Android ActionBar.
- *
- * @return The current IconDrawable for chaining.
*/
public void setToActionbarSize() {
setSizeDp(ACTIONBAR_HEIGHT_DP);
@@ -123,7 +121,6 @@ public void setToActionbarSize() {
* Set the size of the drawable.
*
* @param dimenRes The dimension resource.
- * @return The current IconDrawable for chaining.
*/
public void setSizeResource(int dimenRes) {
mBuilder.setSizeResource(dimenRes);
@@ -135,7 +132,6 @@ public void setSizeResource(int dimenRes) {
* Set the size of the drawable.
*
* @param size The size in density-independent pixels (dp).
- * @return The current IconDrawable for chaining.
*/
public void setSizeDp(int size) {
mBuilder.setSizeDp(size);
@@ -147,7 +143,6 @@ public void setSizeDp(int size) {
* Set the size of the drawable.
*
* @param size The size in pixels (px).
- * @return The current IconDrawable for chaining.
*/
public void setSizePx(int size) {
mBuilder.setSizePx(size);
@@ -159,7 +154,6 @@ public void setSizePx(int size) {
* Set the color of the drawable.
*
* @param color The color, usually from android.graphics.Color or 0xFF012345.
- * @return The current IconDrawable for chaining.
*/
public void setColor(int color) {
mBuilder.setColor(color);
@@ -170,7 +164,6 @@ public void setColor(int color) {
* Set the color of the drawable.
*
* @param colorRes The color resource, from your R file.
- * @return The current IconDrawable for chaining.
*/
public void setColorResource(int colorRes) {
mBuilder.setColorResource(colorRes);
diff --git a/materialiconlib/src/main/java/net/steamcrafted/materialiconlib/MaterialMenuInflater.java b/materialiconlib/src/main/java/net/steamcrafted/materialiconlib/MaterialMenuInflater.java
index 0401dd1..e036e56 100644
--- a/materialiconlib/src/main/java/net/steamcrafted/materialiconlib/MaterialMenuInflater.java
+++ b/materialiconlib/src/main/java/net/steamcrafted/materialiconlib/MaterialMenuInflater.java
@@ -74,7 +74,7 @@ public MaterialMenuInflater setDefaultColorResource(int colorRes){
* {@link InflateException} if there is an error.
*
* @param menuRes Resource ID for an XML layout resource to load (e.g.,
- * R.menu.main_activity)
+ * R.menu.main_activity)
)
* @param menu The Menu to inflate into. The items and submenus will be
* added to this Menu.
*/