From acdc1997a86bc734d9d29a3a81da53927aa0daf6 Mon Sep 17 00:00:00 2001 From: Katelyn Kasperowicz Date: Wed, 18 Oct 2017 14:58:19 -0600 Subject: [PATCH] Typo on spelling primitive --- doc/src/doc/tutorial.mt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;