From 964c83eefd9add25c5b3956bdcdd708f4face640 Mon Sep 17 00:00:00 2001 From: Rodrigo Benenson Date: Mon, 20 Nov 2023 22:44:52 +0100 Subject: [PATCH] Typo fix: primtiives -> primitives --- www/content/platforms.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/content/platforms.md b/www/content/platforms.md index b3a0ddd3e50..d6c4e70fec0 100644 --- a/www/content/platforms.md +++ b/www/content/platforms.md @@ -40,7 +40,7 @@ Roc platforms have a broader scope of responsibility than game engines or Web fr * Tailoring memory management to that domain (more on this later) * Providing all I/O primitives -In most languages, I/O primitives come with the standard library. In Roc, the [standard library](https://www.roc-lang.org/builtins/) contains only data structures; an application gets all of its I/O primtiives from its platform. For example, in the "Hello, World" application above, the `Stdout.line` function comes from the `basic-cli` platform itself, not from Roc's standard library. +In most languages, I/O primitives come with the standard library. In Roc, the [standard library](https://www.roc-lang.org/builtins/) contains only data structures; an application gets all of its I/O primitives from its platform. For example, in the "Hello, World" application above, the `Stdout.line` function comes from the `basic-cli` platform itself, not from Roc's standard library. This design has a few benefits.