From bd3d7dc92b393f6882f253957139b6c3b7c6e170 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bruno=20Ribari=C4=87?= <43731400+ribaricplusplus@users.noreply.github.com> Date: Wed, 30 Sep 2020 23:48:49 +0200 Subject: [PATCH] Fix typo (#4261) * Fix typo * Remove word Co-authored-by: Matthew Brown --- docs/running_psalm/plugins/plugins_type_system.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/running_psalm/plugins/plugins_type_system.md b/docs/running_psalm/plugins/plugins_type_system.md index 04ff8b8cd..58162451e 100644 --- a/docs/running_psalm/plugins/plugins_type_system.md +++ b/docs/running_psalm/plugins/plugins_type_system.md @@ -4,7 +4,7 @@ Psalm's type system represents the types of variables within a program using dif ## Union types -All type Psalm's type information you are likely to use will be wrapped in a [Union Type](../../annotating_code/type_syntax/union_types.md). +All type information you are likely to use will be wrapped in a [Union Type](../../annotating_code/type_syntax/union_types.md). The `Union` class constructor takes an array of `Atomic` types, and can represent one or more of these types at a time. They correspond to a vertical bar in a doc comment.