diff options
Diffstat (limited to 'docs/type_system')
| -rw-r--r-- | docs/type_system/bit.md | 4 | ||||
| -rw-r--r-- | docs/type_system/fn.md | 6 | ||||
| -rw-r--r-- | docs/type_system/namespace.md | 4 | ||||
| -rw-r--r-- | docs/type_system/task.md | 4 |
4 files changed, 9 insertions, 9 deletions
diff --git a/docs/type_system/bit.md b/docs/type_system/bit.md index b474156..5f7aa8e 100644 --- a/docs/type_system/bit.md +++ b/docs/type_system/bit.md @@ -2,10 +2,10 @@ --- -A sequence of bits that can fit into a register +A sequence of bits that can fit into a general register ```text -Bit_size `alias Enum[.bit_any; .bit8; .bit16; .bit32; .bit64; .bit80; .bit128] +Bit_size `alias Enum[.bit_any; .bit8; .bit16; .bit32; .bit64] Bit_representation `alias Enum[ .numeric; .int; .int_unsiged; .int_signed; .float diff --git a/docs/type_system/fn.md b/docs/type_system/fn.md index b004560..66a350e 100644 --- a/docs/type_system/fn.md +++ b/docs/type_system/fn.md @@ -91,15 +91,15 @@ Asynchronous call ```text task : `async fn -value : `wait task +value : `await task ``` ## \`sync Synchronous call -If the callee is a process, an inline wait with async is used +If the callee is a process, an inline await with async is used ```text -fn `sync args // can be turned into `wait fn `async args +fn `sync args // can be turned into `await fn `async args ``` diff --git a/docs/type_system/namespace.md b/docs/type_system/namespace.md index 44483bc..f38e8ab 100644 --- a/docs/type_system/namespace.md +++ b/docs/type_system/namespace.md @@ -20,13 +20,13 @@ A file with code ### \`import ```text -Namespace : `import Const[String] +Namespace : `import Value[String] ``` ### \`use ```text -Namespace : `use Const[String] +Namespace : `use Value[String] ``` ## Main diff --git a/docs/type_system/task.md b/docs/type_system/task.md index 06790d7..33879b6 100644 --- a/docs/type_system/task.md +++ b/docs/type_system/task.md @@ -5,7 +5,7 @@ A segment of code assigned to a process, task code can be recursive ```text -Task[JOIN_TYPE; PROCESS] +Task[TYPE; FN] ``` -## \`wait +## \`await |
