From db5c61954198ec86c7f41f14847e75c241ed03e4 Mon Sep 17 00:00:00 2001 From: Abhay Nikam Date: Thu, 30 Jul 2020 12:56:54 +0530 Subject: [PATCH] Fixed typo AnimalsRecrd -> AnimalsRecord [ci skip] --- railties/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/railties/CHANGELOG.md b/railties/CHANGELOG.md index 65df26bbf4..c93ef6f25e 100644 --- a/railties/CHANGELOG.md +++ b/railties/CHANGELOG.md @@ -31,7 +31,7 @@ rails generate scaffold Pet name:string --database=animals --parent=SecondaryBase ``` - This will ensure the model inherits from the `SecondaryBase` parent instead of `AnimalsRecrd` + This will ensure the model inherits from the `SecondaryBase` parent instead of `AnimalsRecord` ```ruby class Pet < SecondaryBase