Skip to content

Commit e57a936

Browse files
authored
Merge pull request rails#49397 from hatsu38/fix_typo-author_name-in_md
[skip ci] Docs: Fix typo in author name Paul Coelho -> Paulo Coelho
2 parents 4bd5d20 + c0d8528 commit e57a936

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

activerecord/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -667,7 +667,7 @@
667667
668668
# Topic => Topic(id: integer, title: string, author_name: string...)
669669
670-
Topic.where([:title, :author_name] => [["The Alchemist", "Paul Coelho"], ["Harry Potter", "J.K Rowling"]])
670+
Topic.where([:title, :author_name] => [["The Alchemist", "Paulo Coelho"], ["Harry Potter", "J.K Rowling"]])
671671
```
672672

673673
*Paarth Madan*

guides/source/7_1_release_notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -680,7 +680,7 @@ Please refer to the [Changelog][active-record] for detailed changes.
680680
* Allow specifying where clauses with column-tuple syntax.
681681

682682
```ruby
683-
Topic.where([:title, :author_name] => [["The Alchemist", "Paul Coelho"], ["Harry Potter", "J.K Rowling"]])
683+
Topic.where([:title, :author_name] => [["The Alchemist", "Paulo Coelho"], ["Harry Potter", "J.K Rowling"]])
684684
```
685685

686686
* Auto generated index names are now limited to 62 bytes, which fits within the default

0 commit comments

Comments
 (0)