diff options
author | Neeraj Singh <neerajdotname@gmail.com> | 2010-11-27 22:16:51 -0500 |
---|---|---|
committer | Neeraj Singh <neerajdotname@gmail.com> | 2010-11-27 22:16:51 -0500 |
commit | 9bd291407c70daac1b2777f552f599a6fff9f387 (patch) | |
tree | 5c552897a9d6f7089951ab4863ce03db46c8b392 /actionpack | |
parent | 2029187c5611e2da9995637d4f738ed3af834172 (diff) | |
download | rails-9bd291407c70daac1b2777f552f599a6fff9f387.tar.gz rails-9bd291407c70daac1b2777f552f599a6fff9f387.tar.bz2 rails-9bd291407c70daac1b2777f552f599a6fff9f387.zip |
make it clear that recompilation happens only in
development mode
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_view/base.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_view/base.rb b/actionpack/lib/action_view/base.rb index 1beae37af3..15944138f7 100644 --- a/actionpack/lib/action_view/base.rb +++ b/actionpack/lib/action_view/base.rb @@ -76,8 +76,8 @@ module ActionView #:nodoc: # # === Template caching # - # By default, Rails will compile each template to a method in order to render it. When you alter a template, Rails will - # check the file's modification time and recompile it. + # By default, Rails will compile each template to a method in order to render it. When you alter a template, + # Rails will check the file's modification time and recompile it in development mode. # # == Builder # |