From 3fe14428a42d2bae38769e0b98fa2c09e09396bd Mon Sep 17 00:00:00 2001 From: "Phil E. Taylor" Date: Thu, 17 Apr 2025 16:36:19 +0100 Subject: [PATCH] Fix Typos Signed-off-by: Phil E. Taylor --- MAINTENANCE.md | 4 ++-- README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/MAINTENANCE.md b/MAINTENANCE.md index 858bceb4..434f0af9 100644 --- a/MAINTENANCE.md +++ b/MAINTENANCE.md @@ -13,7 +13,7 @@ To build the plugin, execute the gradle task `buildPlugin`. ./gradlew clean buildPlugin ``` -The artifact zip can then be found in `build/distrubutions`. This is the +The artifact zip can then be found in `build/distributions`. This is the final result which can be uploaded to the JetBrains repository. The checklist for a new release should be the following: @@ -24,7 +24,7 @@ The checklist for a new release should be the following: * prepare the changelog: * execute `./prepare-release.sh` to write the changelog to disk * manually copy the relevant parts to `CHANGELOG.md` -* commit the changed files (preferrable with a meaningful commit message +* commit the changed files (preferable with a meaningful commit message `Prepare release 0.16.xxx`) * tag a release (`git tag 0.x.xxx`) * push the changed code and the tag to the remote (`git push && git push --tags`) diff --git a/README.md b/README.md index bac586df..be4820fd 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ class Foo {} #### Class LineMarker -LineMarker which provide navigation to annotation class usages +LineMarker which provides navigation to annotation class usages ```php namespace Doctrine\ORM\Mapping; @@ -145,7 +145,7 @@ class Foobar {} ### Annotation Target Detection -`@Target` is used to attach annotation, if non provided its added to "ALL list" +`@Target` is used to attach annotation, if none provided it is added to "ALL list" ```php /**