diff options
author | Kostis Sagonas <[email protected]> | 2011-02-05 21:56:24 +0200 |
---|---|---|
committer | Stavros Aronis <[email protected]> | 2011-02-06 11:46:37 +0200 |
commit | 1937ce923530758629d32dd763300b7e2a2fd707 (patch) | |
tree | 24df4e33fdab6bd4dd70eba677883fc678a06d97 | |
parent | 28e16ffea3d799690535ee6361db0b4e1a2dead0 (diff) | |
download | otp-1937ce923530758629d32dd763300b7e2a2fd707.tar.gz otp-1937ce923530758629d32dd763300b7e2a2fd707.tar.bz2 otp-1937ce923530758629d32dd763300b7e2a2fd707.zip |
Replace some string() with file:filename()
-rw-r--r-- | lib/typer/src/typer_info.erl | 4 |
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()], |