From c11778f34c6e72b6db9dbedae6ce3bd4f8e1e07f Mon Sep 17 00:00:00 2001 From: Chris R Date: Mon, 19 Jun 2023 11:50:34 +0200 Subject: [PATCH] Fix spelling of "delimited" --- docs/for_engineers/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/for_engineers/index.md b/docs/for_engineers/index.md index 6734e78..7ad5234 100644 --- a/docs/for_engineers/index.md +++ b/docs/for_engineers/index.md @@ -678,7 +678,7 @@ It's also important to reevaluate your "cost" value every so often. It's no good _073. Bcrypt example._ -Here's an example of how to use `bcrypt` in Ruby. That `$` delimeted string it gives you has all of the necessary information as part of it. The algorithm being used `2a`, the cost/work factor `13`, and a salt and resultant hash. So it takes care of all the details for you. +Here's an example of how to use `bcrypt` in Ruby. That `$` delimited string it gives you has all of the necessary information as part of it. The algorithm being used `2a`, the cost/work factor `13`, and a salt and resultant hash. So it takes care of all the details for you. ---