Fix typos

This commit is contained in:
Joe Farebrother
2023-09-15 16:39:51 +01:00
parent 68ad5b7c00
commit eb2f5898bd
2 changed files with 2 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ public class ProfileController : Controller {
return View();
}
// BAD: The AllowAnonymous attribute therides the Authorize attribute on the class.
// BAD: The AllowAnonymous attribute overrides the Authorize attribute on the class.
[AllowAnonymous]
public ActionResult Edit2(int profileId, string text) {
editProfileName(profileId, text);