It should be pattern = phrase("休 浜") or pattern = list(c("休","浜")).
pattern = phrase("休 浜")
pattern = list(c("休","浜"))
phrase() simply splits the string by the whitespace and create a list.
phrase()