Skip to content

Commit a6f04a2

Browse files
committed
Fix Record's moduledoc
1 parent 7291abb commit a6f04a2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/elixir/lib/kernel.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1383,7 +1383,7 @@ defmodule Kernel do
13831383
end
13841384
end
13851385

1386-
@doc """
1386+
@doc %B"""
13871387
Defines a record with a set of private macros to manipulate it.
13881388
13891389
This macro defines a set of macros private to the current module to

lib/elixir/lib/record.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
defmodule Record do
2-
@moduledoc """
2+
@moduledoc %B"""
33
Functions to define Elixir records
44
55
A record is a tagged tuple which contains one or more elements and the first

0 commit comments

Comments
 (0)