public
Fork of KirinDave/fuzed
Description: A new revision of Fuzed, the Erlang-based frontend for web apps. Check out the mailing list at http://groups.google.com/group/fuzed
Clone URL: git://github.com/tmm1/fuzed.git
totally trival and cosmetic fix
abhay (author)
Mon Jun 16 14:44:59 -0700 2008
commit  56b547870b0f75fcac12cd7b66d500714799595d
tree    bc433782c0129f8c317fc417860d7375a54a6818
parent  4501882b0becdafe91d249b3eccf50b02784d282
...
11
12
13
14
15
 
16
17
18
...
20
21
22
23
24
 
25
26
27
...
32
33
34
35
 
36
37
38
...
11
12
13
 
 
14
15
16
17
...
19
20
21
 
 
22
23
24
25
...
30
31
32
 
33
34
35
36
0
@@ -11,8 +11,7 @@
0
          terminate/2, code_change/3]).
0
 
0
 
0
--record(state,
0
- {
0
+-record(state, {
0
    active_nodes = [],
0
    nodes = [],
0
    pending_requests = queue:new(),
0
@@ -20,8 +19,7 @@
0
    node_api_definition = [],
0
    details = [],
0
    logging = false
0
- }
0
-).
0
+ }).
0
 
0
 %% Common type annotations:
0
 % @type details() = [{binary(), {int(),int(),int(),int()}}]
0
@@ -32,7 +30,7 @@
0
 %
0
 
0
 start_link(Details) ->
0
- gen_server:start_link(?MODULE, [Details], []).
0
+ gen_server:start_link(?MODULE, [Details], []).
0
 
0
 start(Details) ->
0
   gen_server:start(?MODULE, [Details], []).

Comments

    No one has commented yet.