Skip to content
This repository has been archived by the owner on Sep 24, 2019. It is now read-only.

Remove extra example and fix grammar. #406

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 3 additions & 7 deletions docs/tests/aAdjacentWithSameResourceShouldBeCombined.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,20 @@ Adjacent links that point to the same location should be merged

.. php:class:: aAdjacentWithSameResourceShouldBeCombined

Because many users of screen-readers use links to navigate the page, providing two links right next to eachother that points to the same location can be confusing. Try combining the links.
Because many users of screen-readers use links to navigate the page, providing two links right next to each other that point to the same location can be confusing. Try combining the links.

Example
-------
Wrong
Wrong
-----

.. code-block:: html

You can also <a href="article.html">read more of</a> <a href="article.html">my great article</a>.

Right
Right
-----

.. code-block:: html

You can also <a href="article.html">read more of my great article</a>.


Example
-------