From 55a7bfd75abfbb8bb550acf7cfa263a6d84bb19c Mon Sep 17 00:00:00 2001 From: Jeremy Tecson Date: Mon, 29 Apr 2019 17:50:29 +0800 Subject: [PATCH] Fix 'an utility' typos to 'a utility' (#169) --- .../custom_language_support/psi_helper_and_utilities.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tutorials/custom_language_support/psi_helper_and_utilities.md b/tutorials/custom_language_support/psi_helper_and_utilities.md index 4abf146b6..61b6fe528 100644 --- a/tutorials/custom_language_support/psi_helper_and_utilities.md +++ b/tutorials/custom_language_support/psi_helper_and_utilities.md @@ -7,7 +7,7 @@ title: 6. PSI Helpers and Utilities If we want to have custom methods in PSI classes we need to define them separately and ask Grammar-Kit to embed them into generated code. -Let's define an utility class with these helper methods. +Let's define a utility class with these helper methods. ```java package com.simpleplugin.psi.impl; @@ -78,9 +78,9 @@ property ::= (KEY? SEPARATOR VALUE?) | KEY {methods=[getKey getValue]} After we made our changes to the grammar we can regenerate the parser and PSI classes. -### 6.3. Define an utility to search properties +### 6.3. Define a utility to search properties -Now we need an utility class to search PSI elements for defined properties over the project. +Now we need a utility class to search PSI elements for defined properties over the project. We will use this utility later when implementing code assistance. ```java