aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authoramitkumarsuroliya <amitkumarsuroliya@gmail.com>2015-10-07 23:05:01 +0530
committeramitkumarsuroliya <amitkumarsuroliya@gmail.com>2015-10-07 23:05:01 +0530
commit37b36842330b5db1996fda80e387eae3a5781db8 (patch)
tree79d0c79a08d0e52b8034ebc59ef3ecae95b9f110 /guides
parent495722a95687e25114ae75608dd3107ac5d6611b (diff)
downloadrails-37b36842330b5db1996fda80e387eae3a5781db8.tar.gz
rails-37b36842330b5db1996fda80e387eae3a5781db8.tar.bz2
rails-37b36842330b5db1996fda80e387eae3a5781db8.zip
Replace `an UNIQUE` with `a UNIQUE` as UNIQUE doesn't have a vowel sound [ci skip]
`A UNIQUE` we pronounce URL as 'yu-ni-k’. We use this everywhere. So, be consistent with it.
Diffstat (limited to 'guides')
-rw-r--r--guides/source/3_2_release_notes.md2
-rw-r--r--guides/source/active_support_instrumentation.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/3_2_release_notes.md b/guides/source/3_2_release_notes.md
index f6871c186e..f16d509f77 100644
--- a/guides/source/3_2_release_notes.md
+++ b/guides/source/3_2_release_notes.md
@@ -154,7 +154,7 @@ Railties
rails g scaffold Post title:string:index author:uniq price:decimal{7,2}
```
- will create indexes for `title` and `author` with the latter being an unique index. Some types such as decimal accept custom options. In the example, `price` will be a decimal column with precision and scale set to 7 and 2 respectively.
+ will create indexes for `title` and `author` with the latter being a unique index. Some types such as decimal accept custom options. In the example, `price` will be a decimal column with precision and scale set to 7 and 2 respectively.
* Turn gem has been removed from default Gemfile.
diff --git a/guides/source/active_support_instrumentation.md b/guides/source/active_support_instrumentation.md
index e5a560edd0..c181b1c483 100644
--- a/guides/source/active_support_instrumentation.md
+++ b/guides/source/active_support_instrumentation.md
@@ -457,7 +457,7 @@ The block receives the following arguments:
* The name of the event
* Time when it started
* Time when it finished
-* An unique ID for this event
+* A unique ID for this event
* The payload (described in previous sections)
```ruby