Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions MAINTENANCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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`)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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
/**
Expand Down