aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--guides/rails_guides/textile_extensions.rb2
-rw-r--r--guides/source/engines.textile2
2 files changed, 2 insertions, 2 deletions
diff --git a/guides/rails_guides/textile_extensions.rb b/guides/rails_guides/textile_extensions.rb
index 471d56eb8c..4677fae504 100644
--- a/guides/rails_guides/textile_extensions.rb
+++ b/guides/rails_guides/textile_extensions.rb
@@ -47,7 +47,7 @@ module RailsGuides
end
def code(body)
- body.gsub!(%r{<(yaml|shell|ruby|erb|html|sql|css|plain)>(.*?)</\1>}m) do |m|
+ body.gsub!(%r{<(yaml|shell|ruby|erb|html|sql|plain)>(.*?)</\1>}m) do |m|
<<HTML
<notextile>
<div class="code_container">
diff --git a/guides/source/engines.textile b/guides/source/engines.textile
index 20df254950..3b0ab9f6d9 100644
--- a/guides/source/engines.textile
+++ b/guides/source/engines.textile
@@ -126,7 +126,7 @@ Also in the test directory is the +test/integration+ directory, where integratio
h3. Providing engine functionality
-The engine that this guide covers will provide posting and commenting functionality and follows a similar thread to the "Getting Started Guide":getting-started.html, with some new twists.
+The engine that this guide covers will provide posting and commenting functionality and follows a similar thread to the "Getting Started Guide":getting_started.html, with some new twists.
h4. Generating a post resource