diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-06-25 11:39:27 -0700 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-06-25 11:39:27 -0700 |
commit | b8e305d9ed590aaf38ebaf310074396e3a396104 (patch) | |
tree | ad841eaa9471f1388e690e62b8c5ec75b3f61526 | |
parent | 7eaf90a7ab6b02d5946857fdee7271a0a3b640d2 (diff) | |
parent | 7acbe603287fd85b1be3c16c47e37e9b3e24a57e (diff) | |
download | rails-b8e305d9ed590aaf38ebaf310074396e3a396104.tar.gz rails-b8e305d9ed590aaf38ebaf310074396e3a396104.tar.bz2 rails-b8e305d9ed590aaf38ebaf310074396e3a396104.zip |
Merge pull request #11097 from ryancw/patch-2
ActionView flows comment typo
-rw-r--r-- | actionview/lib/action_view/flows.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionview/lib/action_view/flows.rb b/actionview/lib/action_view/flows.rb index c0e458cd41..ba24510e56 100644 --- a/actionview/lib/action_view/flows.rb +++ b/actionview/lib/action_view/flows.rb @@ -36,7 +36,7 @@ module ActionView @root = Fiber.current.object_id end - # Try to get an stored content. If the content + # Try to get stored content. If the content # is not available and we are inside the layout # fiber, we set that we are waiting for the given # key and yield. @@ -73,4 +73,4 @@ module ActionView Fiber.current.object_id != @root end end -end
\ No newline at end of file +end |