aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorJaime Iniesta <jaimeiniesta@gmail.com>2012-11-18 09:34:59 +0100
committerJaime Iniesta <jaimeiniesta@gmail.com>2012-11-18 09:34:59 +0100
commite410b5bff7d9a389f2c72f0ae4a51e5a558c6c54 (patch)
tree0d0b3f70682435e210155237c10402e229cda55c /guides
parent7b70eeed43045dc29e73e23fbfdc323e9d397026 (diff)
downloadrails-e410b5bff7d9a389f2c72f0ae4a51e5a558c6c54.tar.gz
rails-e410b5bff7d9a389f2c72f0ae4a51e5a558c6c54.tar.bz2
rails-e410b5bff7d9a389f2c72f0ae4a51e5a558c6c54.zip
Fix broken link in Active Record Query Interface guide
Diffstat (limited to 'guides')
-rw-r--r--guides/source/active_record_querying.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/active_record_querying.md b/guides/source/active_record_querying.md
index 79d00ded0a..32c139df99 100644
--- a/guides/source/active_record_querying.md
+++ b/guides/source/active_record_querying.md
@@ -985,7 +985,7 @@ SELECT categories.* FROM categories
### Specifying Conditions on the Joined Tables
-You can specify conditions on the joined tables using the regular [Array](array-conditions) and [String](#pure-string-conditions) conditions. [Hash conditions](#hash-conditions) provides a special syntax for specifying conditions for the joined tables:
+You can specify conditions on the joined tables using the regular [Array](#array-conditions) and [String](#pure-string-conditions) conditions. [Hash conditions](#hash-conditions) provides a special syntax for specifying conditions for the joined tables:
```ruby
time_range = (Time.now.midnight - 1.day)..Time.now.midnight