From acf9f402257cbeda8852c8b3787341047319a774 Mon Sep 17 00:00:00 2001 From: Andrapyre <42009361+Andrapyre@users.noreply.github.com> Date: Thu, 9 May 2024 16:54:45 +0200 Subject: [PATCH] revising docs --- docs/basic-building-blocks.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/basic-building-blocks.md b/docs/basic-building-blocks.md index d75ec223c..bcb5ea7f5 100644 --- a/docs/basic-building-blocks.md +++ b/docs/basic-building-blocks.md @@ -26,9 +26,9 @@ To describe scalar data type `A`, we use the `Primitive[A]` data type which basi case class Primitive[A](standardType: StandardType[A]) extends Schema[A] ``` -Primitive values are represented using the `Primitive[A]` type class and represent the elements, that we cannot further define through other means. If we visualize our data structure as a tree, primitives are the leaves. +Primitive values are represented using the `Primitive[A]` type class and represent the elements that we cannot further define through other means. If we visualize our data structure as a tree, primitives are the leaves. -For a list of primitive types with built-in support, please see the [standard type reference](standard-type-reference.md) +For a list of all standard types (and therefore primitive types) with built-in support, please see the [standard type reference](standard-type-reference.md) Inside `Schema`'s companion object, we have an implicit conversion from `StandardType[A]` to `Schema[A]`: