Skip to content

Commit

Permalink
Make data type declaration correct with keeping a space (neo-project#534
Browse files Browse the repository at this point in the history
)

Ulong total_neo
  • Loading branch information
dush88c authored and canesin committed Jun 2, 2018
1 parent 5306bb7 commit 4c7c1c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions en-us/sc/quickstart/limitation.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ A numeric type, `VARINT`, is represented as `BigInteger` in the underlying imple
Additionally, these are supported for C# `BigInteger`

```c#
ulongtotal_neo = 200;
ulong total_neo = 200;
BigInteger ico_neo = 300;
BigInteger balance_neo = total_neo- ico_neo;
ulongvalue = 150;
Expand Down Expand Up @@ -249,4 +249,4 @@ Executing a function with the `NonemitWithConvert` attribute actually executes a

For example, `“ABCD”.ToScriptHash();` is valid as the compiler can make a conversion to “ABCD”.

However, `Stringxxx;….;xxx.ToScriptHash();` is invalid as the compiler cannot determine the value of XXX.
However, `Stringxxx;….;xxx.ToScriptHash();` is invalid as the compiler cannot determine the value of XXX.

0 comments on commit 4c7c1c6

Please sign in to comment.