Skip to content

Commit b3b3fdc

Browse files
Improve documentation: fixed typos on Readme and added dollar sign at Contributing [ci skip]
1 parent da7e6dc commit b3b3fdc

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ Rake can be found at http://docs.seattlerb.org/rake/.
4747

4848
To run a single test suite
4949

50-
rake test TEST=path/to/test.rb
50+
`$ rake test TEST=path/to/test.rb`
5151

52-
which can be further narrowed down to one test:
52+
Which can be further narrowed down to one test:
5353

54-
rake test TEST=path/to/test.rb TESTOPTS="--name=test_something"
54+
`$ rake test TEST=path/to/test.rb TESTOPTS="--name=test_something"`

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -200,12 +200,12 @@ end
200200
#### Attributes
201201

202202
It's the default adapter, it generates a json response without a root key.
203-
Doesn't follow any specifc convention.
203+
Doesn't follow any specific convention.
204204

205205
#### JSON
206206

207207
It also generates a json response but always with a root key. The root key **can't be overridden**, and will be automatically defined accordingly with the objects being serialized.
208-
Doesn't follow any specifc convention.
208+
Doesn't follow any specific convention.
209209

210210
#### JSON API
211211

@@ -271,7 +271,7 @@ the serializer generator:
271271
$ rails g serializer post
272272
```
273273

274-
The generated seralizer will contain basic `attributes` and
274+
The generated serializer will contain basic `attributes` and
275275
`has_many`/`has_one`/`belongs_to` declarations, based on the model. For example:
276276

277277
```ruby

0 commit comments

Comments
 (0)