diff options
author | Kostis Sagonas <[email protected]> | 2010-02-13 10:13:46 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2010-02-16 13:24:55 +0100 |
commit | f2592e6ef6bd6179d45884794d722e8cb551d1aa (patch) | |
tree | d945c9bb65badffa4c32074ee2ec124bd8960234 /lib/percept/src/percept_db.erl | |
parent | c12397f937d450d885ca6ec44d53ef34ff8788f4 (diff) | |
download | otp-f2592e6ef6bd6179d45884794d722e8cb551d1aa.tar.gz otp-f2592e6ef6bd6179d45884794d722e8cb551d1aa.tar.bz2 otp-f2592e6ef6bd6179d45884794d722e8cb551d1aa.zip |
percept: Modernize types and specs
Diffstat (limited to 'lib/percept/src/percept_db.erl')
-rw-r--r-- | lib/percept/src/percept_db.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/percept/src/percept_db.erl b/lib/percept/src/percept_db.erl index dc85fa3510..df29381c57 100644 --- a/lib/percept/src/percept_db.erl +++ b/lib/percept/src/percept_db.erl @@ -72,7 +72,7 @@ %% Pid = pid() %% @doc Starts or restarts the percept database. --spec(start/0 :: () -> {'started', pid()} | {'restarted', pid()}). +-spec start() -> {'started', pid()} | {'restarted', pid()}. start() -> case erlang:whereis(percept_db) of @@ -92,7 +92,7 @@ start() -> %% Pid = pid() %% @doc Stops the percept database. --spec(stop/0 :: () -> 'not_started' | {'stopped', pid()}). +-spec stop() -> 'not_started' | {'stopped', pid()}. stop() -> case erlang:whereis(percept_db) of |