Maintain object name consistency in README.md file.

This commit is contained in:
Santosh Wadghule 2018-02-01 10:09:10 +05:30
parent b32c0c09eb
commit d24d1cc9fb
No known key found for this signature in database
GPG Key ID: 3ECDFD59BC239677

View File

@ -78,13 +78,13 @@ end
### Sample Object
```ruby
m = Movie.new
m.id = 232
m.name = 'test movie'
m.actor_ids = [1, 2, 3]
m.owner_id = 3
m.movie_type_id = 1
m
movie = Movie.new
movie.id = 232
movie.name = 'test movie'
movie.actor_ids = [1, 2, 3]
movie.owner_id = 3
movie.movie_type_id = 1
movie
```
### Object Serialization