Skip to content

Commit

Permalink
Trivial indent/syntax change for tutorial md file (neo-project#123)
Browse files Browse the repository at this point in the history
Minor change to use C# syntax (Return -> return) plus tweak indents for readability.
  • Loading branch information
Plasma authored and canesin committed Aug 22, 2017
1 parent aa3b021 commit 2f02a7c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions en-us/sc/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class Contract1: FunctionCode
{
    public static void Main ()// Note that the main method to capitalize
    {
    // The Smart Contract inherited from FunctionCode can be compiled and posted to the block chain for use by other users
    // The Smart Contract inherited from FunctionCode can be compiled and posted to the block chain for use by other users
    }
}
```
Expand All @@ -45,7 +45,7 @@ public class Contract1: VerificationCode
{
    public static bool Verify ()
    {
    Return true;
     return true;
    }
}
```
Expand Down Expand Up @@ -91,7 +91,7 @@ Here are some simple inheritance from VerificationCode's smart contract
```c#
public static bool Verify ()
{
Return true;
return true;
}
```

Expand All @@ -102,7 +102,7 @@ There is a function of deleting an asset in the client's e-wallet client. When y
```c#
public static bool Verify ()
{
Return false
return false
}
```

Expand Down

0 comments on commit 2f02a7c

Please sign in to comment.