From b6b2481db4e313182dc4fd8f9b047127bd32bfd9 Mon Sep 17 00:00:00 2001 From: Paul-Armand Verhaegen Date: Mon, 14 Oct 2024 21:56:29 +0200 Subject: [PATCH] Update introduction.md should state external type instead of function --- exercises/concept/erlang-extraction/.docs/introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/concept/erlang-extraction/.docs/introduction.md b/exercises/concept/erlang-extraction/.docs/introduction.md index fad8843d2..8b6f23bb6 100644 --- a/exercises/concept/erlang-extraction/.docs/introduction.md +++ b/exercises/concept/erlang-extraction/.docs/introduction.md @@ -48,7 +48,7 @@ fn tail_recursive_reverse(list, reversed) { External types can be used to refer to data types defined in other languages, such as Erlang or JavaScript. -To define an external function declare a type but do not provide any constructors. This can then be used in the same way as any other type. +To define an external type declare a type but do not provide any constructors. This can then be used in the same way as any other type. ```gleam pub type OrderedDictionary(element)