Skip to content

Commit

Permalink
Fixes rendering issue where comma is included with FB dataloader link
Browse files Browse the repository at this point in the history
Moduledocs automatically render links as HTML links and the comma
was being tacked on, causing hexdocs to link to a broken url.

This commit wraps the link in MD in order to explicitly specify what
is the href and what is the text.
  • Loading branch information
chadfennell committed Apr 19, 2023
1 parent 9381dd5 commit 87f2f47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/dataloader.ex
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ defmodule Dataloader do
# Dataloader
Dataloader provides an easy way efficiently load data in batches. It's
inspired by https://github.com/facebook/dataloader, although it makes some
inspired by [https://github.com/facebook/dataloader](https://github.com/facebook/dataloader), although it makes some
small API changes to better suit Elixir use cases.
Central to Dataloader is the idea of a source. A single Dataloader struct can
Expand Down

0 comments on commit 87f2f47

Please sign in to comment.