Skip to content

Commit d3b080f

Browse files
committed
Fix typo
1 parent 745d113 commit d3b080f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_posts/2021-12-21-rails-contrib.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class CrawlConfig
2020
end
2121
```
2222

23-
Looks like it should work but it turns out that the numericality validator in Rails does not require `max_crawl_depth` to be actual `Numeric` value - a string that looks like a number would also work. But if we ended up accepting a string value, we would have a potential issue further down in the execution of the program.
23+
Looks like it should work but it turns out that the numericality validator in Rails does not require `max_crawl_depth` to be an actual `Numeric` value - a string that looks like a number would also work. But if we ended up accepting a string value, we would have a potential issue further down in the execution of the program.
2424

2525
I saw this as an opportunity to propose a contribution to Rails. Where do you start with something like that?
2626

0 commit comments

Comments
 (0)