diff options
author | Xavier Noria <fxn@hashref.com> | 2010-02-05 21:06:31 +0100 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2010-02-05 21:06:31 +0100 |
commit | 8668bfc787b5e7d8e129e05d9612c1efc91dd6b8 (patch) | |
tree | bfccecff6525aca9aebae66cccc60a3981e90273 | |
parent | 50901defdeba5822909f71a2b302dc4ba1cab5f6 (diff) | |
download | rails-8668bfc787b5e7d8e129e05d9612c1efc91dd6b8.tar.gz rails-8668bfc787b5e7d8e129e05d9612c1efc91dd6b8.tar.bz2 rails-8668bfc787b5e7d8e129e05d9612c1efc91dd6b8.zip |
the infamuous typo that escapes a thousand passes and it is only spotted in github colored diff
-rw-r--r-- | railties/guides/source/active_support_core_extensions.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/active_support_core_extensions.textile b/railties/guides/source/active_support_core_extensions.textile index 39bc5d7291..5d0bc01fee 100644 --- a/railties/guides/source/active_support_core_extensions.textile +++ b/railties/guides/source/active_support_core_extensions.textile @@ -643,7 +643,7 @@ s = "".html_safe s.html_safe? # => true </ruby> -It is important to understand that +html_safe+ performs no escaping whatsover, it is just an assertion: +It is important to understand that +html_safe+ performs no escaping whatsoever, it is just an assertion: <ruby> s = "<script>...</script>".html_safe |