aboutsummaryrefslogtreecommitdiffstats
path: root/lib/typer/src
diff options
context:
space:
mode:
authorKostis Sagonas <[email protected]>2011-02-05 21:56:24 +0200
committerStavros Aronis <[email protected]>2011-02-06 11:46:37 +0200
commit1937ce923530758629d32dd763300b7e2a2fd707 (patch)
tree24df4e33fdab6bd4dd70eba677883fc678a06d97 /lib/typer/src
parent28e16ffea3d799690535ee6361db0b4e1a2dead0 (diff)
downloadotp-1937ce923530758629d32dd763300b7e2a2fd707.tar.gz
otp-1937ce923530758629d32dd763300b7e2a2fd707.tar.bz2
otp-1937ce923530758629d32dd763300b7e2a2fd707.zip
Replace some string() with file:filename()
Diffstat (limited to 'lib/typer/src')
-rw-r--r--lib/typer/src/typer_info.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/typer/src/typer_info.erl b/lib/typer/src/typer_info.erl
index 615d2b4796..7fc1ba8ad0 100644
--- a/lib/typer/src/typer_info.erl
+++ b/lib/typer/src/typer_info.erl
@@ -23,9 +23,9 @@
-export([collect/1]).
-type func_info() :: {non_neg_integer(), atom(), arity()}.
--type inc_file_info() :: {string(), func_info()}.
+-type inc_file_info() :: {file:filename(), func_info()}.
--record(tmpAcc, {file :: string(),
+-record(tmpAcc, {file :: file:filename(),
module :: atom(),
funcAcc=[] :: [func_info()],
incFuncAcc=[] :: [inc_file_info()],