fix typo
diff --git a/erpnext/stock/dashboard/item_dashboard.py b/erpnext/stock/dashboard/item_dashboard.py
index 6667317..d817e5f 100644
--- a/erpnext/stock/dashboard/item_dashboard.py
+++ b/erpnext/stock/dashboard/item_dashboard.py
@@ -19,7 +19,7 @@
 		if DatabaseQuery('Warehouse', user=frappe.session.user).build_match_conditions():
 			filters.append(['warehouse', 'in', [w.name for w in frappe.get_list('Warehouse')]])
 	except frappe.PermissionError:
-		# user does not have access to warehouse
+		# user does not have access on warehouse
 		return []
 
 	return frappe.db.get_all('Bin', fields=['item_code', 'warehouse', 'projected_qty',
@@ -34,4 +34,4 @@
 		filters=filters,
 		order_by=sort_by + ' ' + sort_order,
 		limit_start=start,
-		limit_page_length='21')
\ No newline at end of file
+		limit_page_length='21')