From 8e6c6d81ad25495f6b3b2529c244c885b3b5dbbe Mon Sep 17 00:00:00 2001 From: Gaith Hallak Date: Tue, 14 Jun 2022 18:20:47 +0400 Subject: [PATCH] Add char type to the docs --- docs/sophia_features.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/sophia_features.md b/docs/sophia_features.md index aa9e229..bcd1f86 100644 --- a/docs/sophia_features.md +++ b/docs/sophia_features.md @@ -357,7 +357,8 @@ Sophia has the following types: | Type | Description | Example | |----------------------|---------------------------------------------------------------------------------------------|--------------------------------------------------------------| | int | A 2-complement integer | ```-1``` | -| address | æternity address, 32 bytes | ```Call.origin``` | +| char | A single character | ```'c'``` | +| address | æternity address, 32 bytes | ```Call.origin``` | | bool | A Boolean | ```true``` | | bits | A bit field | ```Bits.none``` | | bytes(n) | A byte array with `n` bytes | ```#fedcba9876543210``` |