elixir-bridge / elixir-bridge.github.io

Static Site for Elixirbridge
MIT License
21 stars 41 forks source link

Chatter App Typo #129

Closed thejohncotton closed 5 years ago

thejohncotton commented 5 years ago

Old reference:

def recent_messages(limit \\ 10) do
  Chatter.Repo.all(Message, limit: limit)
end

rather than

def recent_messages(limit \\ 10) do
  Chatter.Repo.all(Chatter.Message, limit: limit)
end

There is a duplicate page in the repo with the correct reference, but the chat app tutorial links to an older page.

aneyzberg commented 5 years ago

Thank you so much for all the PR's. This is hugely helpful!