Skip to content

Commit

Permalink
Fix typos in anchor links spec.
Browse files Browse the repository at this point in the history
  • Loading branch information
nene committed Aug 1, 2013
1 parent 41e50a6 commit 3ff90c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/guide_anchors_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def transform(html)
"<a name='myguide-section-blah'>target</a>"
end

it "doesn't transforms anchors already in target format" do
it "doesn't transform anchors already in target format" do
transform("<a name='myguide-section-blah'>target</a>").should ==
"<a name='myguide-section-blah'>target</a>"
end
Expand All @@ -51,7 +51,7 @@ def transform(html)
"<h1 id='myguide-section-blah'>target</h1>"
end

it "doesn't ID-s already in target format" do
it "doesn't transform ID-s already in target format" do
transform("<h1 id='myguide-section-blah'>target</h1>").should ==
"<h1 id='myguide-section-blah'>target</h1>"
end
Expand Down

0 comments on commit 3ff90c4

Please sign in to comment.