From 1e62841f78d48de059dfa30d6b890c7891aef8ac Mon Sep 17 00:00:00 2001 From: Kian Meng Ang Date: Mon, 8 Feb 2021 21:33:24 +0800 Subject: [PATCH] Use HTTPS for links in README (#413) This update all links in README to HTTPS and fixes a broken link. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a83f449..a7edc75 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ defp elixirc_paths(_), do: ["lib"] ## Overview -[Check out the docs](http://hexdocs.pm/ex_machina/ExMachina.html) for more details. +[Check out the docs](https://hexdocs.pm/ex_machina/ExMachina.html) for more details. Define factories: @@ -132,7 +132,7 @@ defmodule MyApp.Factory do end ``` -Using factories ([check out the docs](http://hexdocs.pm/ex_machina/ExMachina.html) for more details): +Using factories ([check out the docs](https://hexdocs.pm/ex_machina/ExMachina.html) for more details): ```elixir # `attrs` are automatically merged in for all build/insert functions. @@ -513,5 +513,5 @@ to design, develop, and grow your product. ## Inspiration -* [Fixtures for Ecto](http://blog.danielberkompas.com/elixir/2015/07/16/fixtures-for-ecto.html) +* [Fixtures for Ecto](https://blog.danielberkompas.com/elixir/2015/07/16/fixtures-for-ecto.html) * [Factory Bot](https://github.com/thoughtbot/factory_bot)