diff options
author | Nishant Modak <modak.nishant@gmail.com> | 2012-12-30 02:33:57 +0530 |
---|---|---|
committer | Nishant Modak <modak.nishant@gmail.com> | 2012-12-30 02:33:57 +0530 |
commit | 9a497582e666b20cf38b87bf8beb64e60d3ed564 (patch) | |
tree | 32337d12b2c1850cfb95644b1f28e5179b64f554 /guides/source | |
parent | 0dad3ed4c630e9337c02d9aa6e3ea2e5cd613211 (diff) | |
download | rails-9a497582e666b20cf38b87bf8beb64e60d3ed564.tar.gz rails-9a497582e666b20cf38b87bf8beb64e60d3ed564.tar.bz2 rails-9a497582e666b20cf38b87bf8beb64e60d3ed564.zip |
Update documentation for yml usage
Update documentation for yml usage against https://github.com/rails/rails/issues/8612
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/testing.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/testing.md b/guides/source/testing.md index a9bce04522..f178ca87e9 100644 --- a/guides/source/testing.md +++ b/guides/source/testing.md @@ -77,7 +77,7 @@ steve: profession: guy with keyboard ``` -Each fixture is given a name followed by an indented list of colon-separated key/value pairs. Records are typically separated by a blank space. You can place comments in a fixture file by using the # character in the first column. +Each fixture is given a name followed by an indented list of colon-separated key/value pairs. Records are typically separated by a blank space. You can place comments in a fixture file by using the # character in the first column. Keys which resemble YAML keywords such as 'yes' and 'no' are quoted so that the YAML Parser correctly interprets them. #### ERB'in It Up |