From 34d98f9f42db15e5262eb242491f339cb62aa268 Mon Sep 17 00:00:00 2001 From: Jacob Dreesen Date: Mon, 9 Sep 2019 20:52:30 +0200 Subject: [PATCH] Fix description of @psalm-external-mutation-free (#2110) --- docs/annotating_code/supported_annotations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/annotating_code/supported_annotations.md b/docs/annotating_code/supported_annotations.md index 4da2c2323..2fe5db7df 100644 --- a/docs/annotating_code/supported_annotations.md +++ b/docs/annotating_code/supported_annotations.md @@ -226,7 +226,7 @@ class D { ### `@psalm-external-mutation-free` -Used to annotate a class method that does not mutate state, either internally or externally of the class's scope. +Used to annotate a class method that does not mutate state externally of the class's scope. ```php class E {