erlang headers should be hrl

This commit is contained in:
Carlos Martín Nieto
2013-01-29 01:40:14 +01:00
parent 8a96f4732e
commit ad567fbf41
5 changed files with 4 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
-module(geef_odb).
-export([exists/2]).
-include("geef_records.hlr").
-include("geef_records.hrl").
-spec exists(odb(), string()) -> boolean().
exists(#odb{handle=Handle}, Sha) ->

View File

@@ -1,6 +1,6 @@
-module(geef_oid).
-include("geef_records.hlr").
-include("geef_records.hrl").
-export([parse/1, fmt/1]).
-spec fmt(oid()) -> binary().

View File

@@ -2,7 +2,7 @@
-export([lookup/2, resolve/1, target/1]).
-include("geef_records.hlr").
-include("geef_records.hrl").
-spec new(term()) -> ref().
new(Handle) ->

View File

@@ -2,7 +2,7 @@
-export([open/1, init/2, path/1, workdir/1, is_bare/1, references/1]).
-include("geef_records.hlr").
-include("geef_records.hrl").
-spec path(repo()) -> binary().
path(#repo{handle=Handle}) ->