aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSantosh Wadghule <santosh.wadghule@gmail.com>2015-01-12 10:03:44 +0530
committerSantosh Wadghule <santosh.wadghule@gmail.com>2015-01-12 10:07:45 +0530
commit83dd559643e429f06091fea430486a612e6b4e96 (patch)
treefa1a7a1824fd80fcf91170b4b19907db0a5c85fe
parent3adb05565c7de3ba9dd4117b8a3a631a0b238b8c (diff)
downloadrails-83dd559643e429f06091fea430486a612e6b4e96.tar.gz
rails-83dd559643e429f06091fea430486a612e6b4e96.tar.bz2
rails-83dd559643e429f06091fea430486a612e6b4e96.zip
Change 'a' to 'an' for 'XML' word [ci skip]
-rw-r--r--guides/source/active_model_basics.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/active_model_basics.md b/guides/source/active_model_basics.md
index 8dee1cc5ec..88de4e2d9f 100644
--- a/guides/source/active_model_basics.md
+++ b/guides/source/active_model_basics.md
@@ -396,7 +396,7 @@ class Person
end
```
-With the `to_xml` you have a XML representing the model.
+With the `to_xml` you have an XML representing the model.
```ruby
person = Person.new
@@ -405,7 +405,7 @@ person.name = "Bob"
person.to_xml # => "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<person>\n <name>Bob</name>\n</person>\n"
```
-From a XML string you define the attributes of the model.
+From an XML string you define the attributes of the model.
You need to have the `attributes=` method defined on your class:
```ruby