From 6d8b79325146fd0cf65b128f71bf82ae7bb2d160 Mon Sep 17 00:00:00 2001 From: Alper Akgun <aakgun@gitlab.com> Date: Sun, 27 Feb 2022 22:44:26 +0300 Subject: [PATCH] Fix particularly spelling --- doc/development/secure_coding_guidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/development/secure_coding_guidelines.md b/doc/development/secure_coding_guidelines.md index 5535f1ac4c0b..8d77467d1b58 100644 --- a/doc/development/secure_coding_guidelines.md +++ b/doc/development/secure_coding_guidelines.md @@ -1157,7 +1157,7 @@ Here's some pseudocode showing an example of a potential TOCTOU bug: ```ruby def upvote(comment, user) # The time between calling .exists? and .create can lead to TOCTOU, - # particulary if .create is a slow method, or runs in a background job + # particularly if .create is a slow method, or runs in a background job if Upvote.exists?(comment: comment, user: user) return else -- GitLab