Skip to content

Commit 17da55c

Browse files
committed
Fix doc generation
1 parent 209e8e4 commit 17da55c

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ iex(7)> inspect(sql)
6666
```
6767

6868
## Benchmark
69-
You can find benchmark results [here](benchmarks) or run `mix sql.bench`
69+
You can find benchmark results [here](https://github.com/elixir-dbvisor/sql/benchmarks) or run `mix sql.bench`
7070

7171
## Installation
7272

lib/mix/tasks/sql.gen.parser.ex

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,9 @@
44
defmodule Mix.Tasks.Sql.Gen.Parser do
55
use Mix.Task
66
import Mix.Generator
7+
@moduledoc since: "0.2.0"
78

89
@shortdoc "Generates a lexer and parser from the BNF rules"
9-
@shortdoc since: "0.2.0"
10-
1110
def run(_args) do
1211
rules = SQL.BNF.parse()
1312
space = Enum.map(rules["<space>"], fn <<c::utf8>> -> c end)

lib/mix/tasks/sql.gen.test.ex

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,9 @@
44
defmodule Mix.Tasks.Sql.Gen.Test do
55
use Mix.Task
66
import Mix.Generator
7+
@moduledoc since: "0.2.0"
78

89
@shortdoc "Generates test from the BNF rules"
9-
@shortdoc since: "0.2.0"
10-
1110
def run([base]) do
1211
create_file("test/conformance/e_test.exs", test_template([mod: SQL.Conformance.ETest, dir: Path.join(base, "E")]))
1312
create_file("test/conformance/f_test.exs", test_template([mod: SQL.Conformance.FTest, dir: Path.join(base, "F")]))

0 commit comments

Comments
 (0)