From ff820cb582fa847dbc2135eecad1f194a517f125 Mon Sep 17 00:00:00 2001 From: Bas Leijdekkers Date: Thu, 14 Sep 2017 15:15:48 +0200 Subject: [PATCH] fix typo in javadoc --- .../refactoring/JavaRefactoringActionHandlerFactory.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/java/openapi/src/com/intellij/refactoring/JavaRefactoringActionHandlerFactory.java b/java/openapi/src/com/intellij/refactoring/JavaRefactoringActionHandlerFactory.java index bd1da48b1504..be96b8126226 100644 --- a/java/openapi/src/com/intellij/refactoring/JavaRefactoringActionHandlerFactory.java +++ b/java/openapi/src/com/intellij/refactoring/JavaRefactoringActionHandlerFactory.java @@ -70,7 +70,7 @@ public abstract class JavaRefactoringActionHandlerFactory { * Creates handler for Introduce Parameter refactoring.

* * {@link RefactoringActionHandler#invoke(com.intellij.openapi.project.Project, com.intellij.psi.PsiElement[], com.intellij.openapi.actionSystem.DataContext)} - * accepts either 1 {@code PsiExpression}, that will be an initialzier for introduced parameter, + * accepts either 1 {@code PsiExpression}, that will be an initializer for introduced parameter, * or 1 {@code PsiLocalVariable}, that will be replaced with introduced parameter. */ public abstract RefactoringActionHandler createIntroduceParameterHandler(); @@ -171,7 +171,7 @@ public abstract class JavaRefactoringActionHandlerFactory { * Creates handler for Introduce Field refactoring.

* * {@link RefactoringActionHandler#invoke(com.intellij.openapi.project.Project, com.intellij.psi.PsiElement[], com.intellij.openapi.actionSystem.DataContext)} - * accepts either 1 {@code PsiExpression}, that will be an initialzier for introduced field, + * accepts either 1 {@code PsiExpression}, that will be an initializer for introduced field, * or 1 {@code PsiLocalVariable}, that will be replaced with introduced field. */ public abstract RefactoringActionHandler createIntroduceFieldHandler(); @@ -180,7 +180,7 @@ public abstract class JavaRefactoringActionHandlerFactory { * Creates handler for Introduce Variable refactoring.

* * {@link RefactoringActionHandler#invoke(com.intellij.openapi.project.Project, com.intellij.psi.PsiElement[], com.intellij.openapi.actionSystem.DataContext)} - * accepts 1 {@code PsiExpression}, that will be an initialzier for introduced variable. + * accepts 1 {@code PsiExpression}, that will be an initializer for introduced variable. */ public abstract RefactoringActionHandler createIntroduceVariableHandler(); @@ -188,7 +188,7 @@ public abstract class JavaRefactoringActionHandlerFactory { * Creates handler for Introduce Constant refactoring.

* * {@link RefactoringActionHandler#invoke(com.intellij.openapi.project.Project, com.intellij.psi.PsiElement[], com.intellij.openapi.actionSystem.DataContext)} - * accepts either 1 {@code PsiExpression}, that will be an initialzier for introduced constant, + * accepts either 1 {@code PsiExpression}, that will be an initializer for introduced constant, * or 1 {@code PsiLocalVariable}, that will be replaced with introduced constant. */ public abstract RefactoringActionHandler createIntroduceConstantHandler();