Maxim Sokhatsky 11 years ago
parent
commit
4db31b0cea
1 changed files with 2 additions and 4 deletions
  1. 2 4
      apps/server/src/README.md

+ 2 - 4
apps/server/src/README.md

@@ -19,8 +19,7 @@ by game_session gen_server.
 Please refer to requests.hrl for common Game Server protocol envelopment.
 Please refer to requests.hrl for common Game Server protocol envelopment.
 Each game could have specific actions and events.
 Each game could have specific actions and events.
 
 
-Actions
--------
+### Actions
 
 
 ```erlang
 ```erlang
 -record(session_attach, {token}).
 -record(session_attach, {token}).
@@ -31,8 +30,7 @@ Actions
 -record(game_action, {game :: 'GameId'(), action, args = []}).
 -record(game_action, {game :: 'GameId'(), action, args = []}).
 ```
 ```
 
 
-Events
-------
+### Events
 
 
 ```erlang
 ```erlang
 -record(game_event, {game :: 'GameId'(), event, args = [] }).
 -record(game_event, {game :: 'GameId'(), event, args = [] }).