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.
 Each game could have specific actions and events.
 
-Actions
--------
+### Actions
 
 ```erlang
 -record(session_attach, {token}).
@@ -31,8 +30,7 @@ Actions
 -record(game_action, {game :: 'GameId'(), action, args = []}).
 ```
 
-Events
-------
+### Events
 
 ```erlang
 -record(game_event, {game :: 'GameId'(), event, args = [] }).