aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Benjamin Barenblat <bbarenblat@galois.com>2014-01-24 17:08:55 -0800
committerGravatar Benjamin Barenblat <bbarenblat@galois.com>2014-01-24 17:08:55 -0800
commitf767413fbe1cc74d66233c9ff5df3895a528b5d5 (patch)
tree071c9ef4d697c11b6a5b87b393f699fa75c7b7b0
parent02b884ea4eab34b0114043dbf24c2ee8e4a66ca7 (diff)
s/FireFox/Firefox/gHEADmaster
The software’s name is officially spelled “Firefox,” without camel-casing. It’s already spelled that way throughout most of the package, but there were a couple places where camel-casing persisted.
-rw-r--r--README.md2
-rw-r--r--doc/manual_src/gettingStarted.md4
-rw-r--r--src/batchtools/webdrivers/src/main/java/com/galois/fiveui/drivers/Drivers.java2
3 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index 0b8aa28..9c38a0f 100644
--- a/README.md
+++ b/README.md
@@ -10,7 +10,7 @@ Google Chrome. If you're familiar with browser extensions, you can
quickly install FiveUI from the binaries:
- Chrome: [fiveui.crx](http://galoisinc.github.com/FiveUI/binaries/fiveui.crx)
- - FireFox: [fiveui.xpi](http://galoisinc.github.com/FiveUI/binaries/fiveui.xpi)
+ - Firefox: [fiveui.xpi](http://galoisinc.github.com/FiveUI/binaries/fiveui.xpi)
The [Installation Guide](doc/manual_src/install.md) describes the
installation process for Firefox and Google Chrome.
diff --git a/doc/manual_src/gettingStarted.md b/doc/manual_src/gettingStarted.md
index 9928916..4167584 100644
--- a/doc/manual_src/gettingStarted.md
+++ b/doc/manual_src/gettingStarted.md
@@ -22,9 +22,9 @@ options link on the extensions page, or through the options item on
the context menu off of the FiveUI button (accessed by right-clicking
on the FiveUI button).
-## Options in FireFox
+## Options in Firefox
-The options page in `FireFox` can be accessed via the FiveUI gear widget, which
+The options page in `Firefox` can be accessed via the FiveUI gear widget, which
should be added in addition to the FiveUI widget when the addon is installed.
Once clicked, a new tab should appear which serves as the options interface for
the addon.
diff --git a/src/batchtools/webdrivers/src/main/java/com/galois/fiveui/drivers/Drivers.java b/src/batchtools/webdrivers/src/main/java/com/galois/fiveui/drivers/Drivers.java
index 7e53d06..6450e25 100644
--- a/src/batchtools/webdrivers/src/main/java/com/galois/fiveui/drivers/Drivers.java
+++ b/src/batchtools/webdrivers/src/main/java/com/galois/fiveui/drivers/Drivers.java
@@ -80,7 +80,7 @@ public class Drivers {
FirefoxDriver driver;
if (null == ffBinaryPath) {
System.err
- .println("WARNING: Running essentially random version of FireFox!");
+ .println("WARNING: Running essentially random version of Firefox!");
System.err.println(" set a path to firefox with -D"
+ FIREFOX_BIN_PATH + "=<path to firefox>");
driver = new FirefoxDriver(profile);