You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by je...@apache.org on 2014/11/09 04:05:08 UTC

svn commit: r1637625 - /thrift/cms-site/trunk/content/tutorial/haxe.md

Author: jensg
Date: Sun Nov  9 03:05:07 2014
New Revision: 1637625

URL: http://svn.apache.org/r1637625
Log:
fixed snippet indendation

Modified:
    thrift/cms-site/trunk/content/tutorial/haxe.md

Modified: thrift/cms-site/trunk/content/tutorial/haxe.md
URL: http://svn.apache.org/viewvc/thrift/cms-site/trunk/content/tutorial/haxe.md?rev=1637625&r1=1637624&r2=1637625&view=diff
==============================================================================
--- thrift/cms-site/trunk/content/tutorial/haxe.md (original)
+++ thrift/cms-site/trunk/content/tutorial/haxe.md Sun Nov  9 03:05:07 2014
@@ -11,7 +11,7 @@ library_lang: "haxe"
 For this tutorial, we put both the server and the client main code into one single program. 
 Depending on the arguments passed, it runs as a server or as a client program.
 
-  [snippet:path=tutorial/haxe/src/Main.hx:lines=20,332]
+    [snippet:path=tutorial/haxe/src/Main.hx:lines=20,332]
 
 Were done with the client, but need some more for the server: A service handler implementaion.
   
@@ -19,7 +19,7 @@ Were done with the client, but need some
 As the name suggests, the service handler implements the Thrift service on the server side. 
 The code to achieve this is as follows:
 
-  [snippet:path=tutorial/haxe/src/CalculatorHandler.hx:lines=20,102]
+    [snippet:path=tutorial/haxe/src/CalculatorHandler.hx:lines=20,102]
 
 ### Additional Information