Maintain object name consistency in README.md file.
This commit is contained in:
parent
b32c0c09eb
commit
d24d1cc9fb
14
README.md
14
README.md
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user