diff --git a/README.md b/README.md index 5f3e712..9a93efe 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ class Song < ActiveRecord::Base include Metka::Model(column: 'genres') end -@song = Song.new(title: 'Migrate tags in Rails to SonggreSQL') +@song = Song.new(title: 'Migrate tags in Rails to PostgreSQL') @song.tag_list = 'top, chill' @song.genre_list = 'rock, jazz, pop' @song.save @@ -58,7 +58,7 @@ end ### .with_all_#{column_name} ```ruby Song.with_all_tags('top') -=> [# [# [] @@ -67,22 +67,22 @@ Song.with_all_tags('') => [] Song.with_all_genres('rock') -=> [# [# [# [# [# [# [] Song.with_any_genres('rock, rap') -=> [# [# [] Song.without_all_tags('top, 1990') -=> [# [# [# [# [# [# [] @@ -108,13 +108,13 @@ Song.without_any_tags('top, 1990') => [] Song.without_any_tags('1990, 1980') -=> [# [# [] Song.without_any_genres('') -=> [# [#