aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Web/Controllers/RoleController.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DevHive.Web/Controllers/RoleController.cs')
-rw-r--r--src/DevHive.Web/Controllers/RoleController.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DevHive.Web/Controllers/RoleController.cs b/src/DevHive.Web/Controllers/RoleController.cs
index 6b81ab8..d710f5a 100644
--- a/src/DevHive.Web/Controllers/RoleController.cs
+++ b/src/DevHive.Web/Controllers/RoleController.cs
@@ -67,7 +67,7 @@ namespace DevHive.Web.Controllers
bool result = await this._roleService.DeleteRole(id);
if (!result)
- return new BadRequestObjectResult("Could nor delete role!");
+ return new BadRequestObjectResult("Could not delete role!");
return new OkResult();
}