Skip to content

Commit e64f314

Browse files
committed
Fixed wether to whether issues. No impact on plugin, impact on web site.
1 parent f0eda42 commit e64f314

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

Eclipse update site/WebContent/fragments/faq/troubleshooting.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,11 +132,11 @@ <h3>To reproduce do the following:</h3>
132132
</li><li>
133133
Make sure you have followed the installation instruction <b>uncheck "group items by category"</b>.
134134
</li><li>
135-
Check wether you are downloading the latestversion. Believe me many people failed because they wanted to download an old version.
135+
Check whether you are downloading the latestversion. Believe me many people failed because they wanted to download an old version.
136136
</li><li>
137137
In eclipse: Goto windows-&gt;preferences-&gt;general-&gt;Network settings. Verify these are set OK.<br>
138138
</li><li>
139-
Check in your firewall wether java(w) is allowed to get onto the internet.<br>
139+
Check in your firewall whether java(w) is allowed to get onto the internet.<br>
140140
</li><li>
141141
Disable virus checkers and firewalls<br>
142142
</li><li>

Eclipse update site/WebContent/fragments/install_advice/V1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Arduino IDE version 1
22
====
3-
V1 of the plugin runs in juno and indigo. I don't know wether kepler or Luna works.
3+
V1 of the plugin runs in juno and indigo. I don't know whether kepler or Luna works.
44

55
There is no product in V1.
66

it.baeyens.arduino.application/src/it/baeyens/arduino/application/ApplicationActionBarAdvisor.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ public ApplicationActionBarAdvisor(IActionBarConfigurer configurer) {
1515
protected void makeActions(IWorkbenchWindow window) {
1616
super.makeActions(window);
1717
System.out.println("Jaba Was here");
18-
// Not sure wether something is needed here JABA
18+
// Not sure whether something is needed here JABA
1919
}
2020

2121
@Override
2222
protected void fillMenuBar(IMenuManager menuBar) {
2323
super.fillMenuBar(menuBar);
2424
System.out.println("Jaba Was here");
25-
// Not sure wether something is needed here JABA
25+
// Not sure whether something is needed here JABA
2626
}
2727

2828
}

it.baeyens.arduino.core/src/it/baeyens/arduino/toolchain/ArduinoLanguageProvider.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -188,11 +188,11 @@ protected String getCompilerCommand(String languageId) {
188188
ManagedBuilderCorePlugin.error("Unable to find compiler command for language " + languageId + " in toolchain=" + getToolchainId()); //$NON-NLS-1$
189189
}
190190

191-
String ret= compilerCommand.replaceAll("[^\\\\]\"\"", "").replaceAll(" ", " "); // remove
192-
// "" except \""
193-
// and
194-
// double
195-
// blanks
191+
String ret = compilerCommand.replaceAll("[^\\\\]\"\"", "").replaceAll(" ", " "); // remove
192+
// "" except \""
193+
// and
194+
// double
195+
// blanks
196196
return ret;
197197
}
198198

it.baeyens.arduino.core/src/it/baeyens/arduino/tools/PdePreprocessor.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,15 +83,15 @@ public static void processProject(IProject iProject) throws CoreException {
8383

8484
IPath path = curResource.getFullPath();
8585

86-
// check wether the indexer is properly configured.
86+
// check whether the indexer is properly configured.
8787
IFile file = ResourcesPlugin.getWorkspace().getRoot().getFile(path);
8888
ITranslationUnit tu = (ITranslationUnit) CoreModel.getDefault().create(file);
8989
if (tu == null) {
9090
// the indexer is not properly configured so drop a error in the file
9191
body += "\n";
9292
body += "#error the file: " + curResource.getName() + " is not found in the indexer though it exists on the file system.\n";
9393
body += "#error this is probably due to a bad eclipse configuration : ino and pde are not marked as c++ file.\n";
94-
body += "#error please check wether *.ino and *.pde are marked as C++ source code in windows->preferences->C/C++->file types.\n";
94+
body += "#error please check whether *.ino and *.pde are marked as C++ source code in windows->preferences->C/C++->file types.\n";
9595
} else {
9696
// add declarations made in ino files.
9797
IASTTranslationUnit asttu = tu.getAST(index, ITranslationUnit.AST_SKIP_FUNCTION_BODIES | ITranslationUnit.AST_SKIP_ALL_HEADERS);

it.baeyens.arduino.monitor/src/it/baeyens/arduino/monitor/views/SerialListener.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ private void internalExtractAndProcessScopeData() {
8989
}
9090
}
9191
}
92-
if (!dontProcessLastPart) // we don't end on a scope data set; check wether the last char is start of a new scope data set
92+
if (!dontProcessLastPart) // we don't end on a scope data set; check whether the last char is start of a new scope data set
9393
{
9494
if (myReceivedScopeData.get(myReceivedScopeData.position()) == (byte) (ArduinoConst.SCOPE_START_DATA >> 8)) {
9595
for (int n = 0; n < myReceivedScopeData.position() - 1; n++)

0 commit comments

Comments
 (0)