Skip to content

Commit

Permalink
capitalization
Browse files Browse the repository at this point in the history
  • Loading branch information
ignatov committed Jan 21, 2017
1 parent 2d616e4 commit 6a6a33d
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -58,8 +58,8 @@ public class RebarProjectRootStep extends ProjectImportWizardStep {
public RebarProjectRootStep(WizardContext context) {
super(context);
String projectFileDirectory = context.getProjectFileDirectory();
myProjectRootComponent.addBrowseFolderListener("Select rebar.config of a rebar project to import", "", null,
FileChooserDescriptorFactory.createSingleFolderDescriptor());
myProjectRootComponent.addBrowseFolderListener("Select rebar.config of a Rebar Project to Import", "", null,
FileChooserDescriptorFactory.createSingleFolderDescriptor());
myProjectRootComponent.setText(projectFileDirectory); // provide project path

myGetDepsCheckbox.setVisible(ourEnabled);
Expand Down Expand Up @@ -122,7 +122,7 @@ private static void fetchDependencies(@NotNull final VirtualFile projectRoot, @N
? JpsErlangSdkType.getScriptInterpreterExecutable(sdkPath).getAbsolutePath()
: RebarRunningStateUtil.findEscriptExecutable();

ProgressManager.getInstance().run(new Task.Modal(project, "Fetching dependencies", true) {
ProgressManager.getInstance().run(new Task.Modal(project, "Fetching Dependencies", true) {
public void run(@NotNull final ProgressIndicator indicator) {
indicator.setIndeterminate(true);
GeneralCommandLine commandLine = new GeneralCommandLine();
Expand Down

0 comments on commit 6a6a33d

Please sign in to comment.