From 6bf5c2af94fb7a9e805e732ad0cb8bafc77c63cb Mon Sep 17 00:00:00 2001 From: Petrik Date: Wed, 19 Aug 2020 09:15:42 +0200 Subject: [PATCH] Fix small typo in configuring guide [skip ci] --- guides/source/configuring.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/source/configuring.md b/guides/source/configuring.md index 43b14ff1f5..5a6d20e9c2 100644 --- a/guides/source/configuring.md +++ b/guides/source/configuring.md @@ -1429,7 +1429,7 @@ NOTE: There is no guarantee that your initializers will run after all the gem in NOTE: You can use subfolders to organize your initializers if you like, because Rails will look into the whole file hierarchy from the initializers folder on down. -TIP: While Rails supports numbering of initializer file names for load ordering purposes, a better technique is to place any code that need to load in a specific order within the same file. This reduces file name churn, makes dependencies more explicit, and can help surface new concepts within your application. +TIP: While Rails supports numbering of initializer file names for load ordering purposes, a better technique is to place any code that needs to load in a specific order within the same file. This reduces file name churn, makes dependencies more explicit, and can help surface new concepts within your application. Initialization events --------------------- -- GitLab