diff --git a/doc/src/doc/tutorial.mt b/doc/src/doc/tutorial.mt index 088808ef..94a45389 100644 --- a/doc/src/doc/tutorial.mt +++ b/doc/src/doc/tutorial.mt @@ -114,9 +114,9 @@ Other forms of construction, e.g. new Point(42) or new Point(

Basic type concept will be described in this section. Primitive types, object types, variant type, and Nullable types exist in JSX.

-

Pritimive Types

+

Primitive Types

-There are three pritimive types in JSX: string, number, and boolean. The three are non-nullable, immutable types. The code snippet below declares three variables s, n, b with their repective types, annocated to the right of the name of the variables using the : mark. +There are three primitive types in JSX: string, number, and boolean. The three are non-nullable, immutable types. The code snippet below declares three variables s, n, b with their repective types, annocated to the right of the name of the variables using the : mark.

{prettify}->('jsx', <<'EOT') var s : string;