We can't find the internet
Attempting to reconnect
Something went wrong!
Hang in there while we get back on track
phoenix changelog
Hey there, awesome devs! 🎉 We've got a small but mighty update for you.
Changelog
- Chore: We've made a little tweak in our documentation to point you in the right direction! 🛠️ The path for the "index.html" template in our Elixir app docs was a bit off. We've updated it from
lib/hello_web/templates/page/index.html.heex
to the correct path:lib/hello_web/controllers/post_html/index.html.heex
. Now, when you're testing controllers, you'll have the right info at your fingertips. Happy coding! 🚀
Included Commits
This commit updates the documentation for the testing of controllers in the Elixir application by correcting the file path for the "index.html" template. The previous path referenced lib/hello_web/templates/page/index.html.heex
, which was inaccurate. The new path, lib/hello_web/controllers/post_html/index.html.heex
, accurately reflects the location of the template used in the index function of the controller.
In summary, the change involves a minor modification in the documentation file guides/testing/testing_controllers.md
, where one line was edited to provide the correct template path. This ensures that developers referencing the documentation will have accurate information for testing the controller's functionality related to rendering the index template.
Files changed
- guides/testing/testing_controllers.md