diff options
author | Robin Dupret <robin.dupret@gmail.com> | 2014-08-29 12:36:45 +0200 |
---|---|---|
committer | Robin Dupret <robin.dupret@gmail.com> | 2014-08-29 12:37:14 +0200 |
commit | 38d6c722b23bae2eeb82a63fc1e78c0937bed17a (patch) | |
tree | 5db1c55da5013dc480280b10f97ff38d3b9ef116 /guides | |
parent | 7447e0b9943bcd7ba99921c014c32927c2858343 (diff) | |
download | rails-38d6c722b23bae2eeb82a63fc1e78c0937bed17a.tar.gz rails-38d6c722b23bae2eeb82a63fc1e78c0937bed17a.tar.bz2 rails-38d6c722b23bae2eeb82a63fc1e78c0937bed17a.zip |
Some documentation fixes [ci skip]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/4_2_release_notes.md | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/guides/source/4_2_release_notes.md b/guides/source/4_2_release_notes.md index ff73960858..4736818712 100644 --- a/guides/source/4_2_release_notes.md +++ b/guides/source/4_2_release_notes.md @@ -289,15 +289,15 @@ Please refer to the [Changelog][action-pack] for detailed changes. * The way `assert_select` works has changed; specifically a different library is used to interpret css selectors, build the transient DOM that the - selectors are applied against, and to extract the data from that DOM. These - changes should only affect edge cases. Examples: + selectors are applied against, and to extract the data from that DOM. These + changes should only affect edge cases. Examples: * Values in attribute selectors may need to be quoted if they contain - non-alphanumeric characters - * DOMs built from HTML source containing invalid HTML containing improperly - nested elements may differ + non-alphanumeric characters. + * DOMs built from HTML source containing invalid HTML with improperly + nested elements may differ. * If the data selected contains entities, the value selected for comparison - used to be raw (example: `AT&T`), and now is evaluated - (example: `AT&T`) + used to be raw (e.g. `AT&T`), and now is evaluated + (e.g. `AT&T`). Action View |