Skip to content
This repository has been archived by the owner on Feb 27, 2023. It is now read-only.

Commit

Permalink
Merge pull request #358 from stweil/master
Browse files Browse the repository at this point in the history
Fix some typos in comments and documentation
  • Loading branch information
lurch authored Sep 30, 2016
2 parents 7854f40 + 539662d commit 44cda0c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ This will also prevent the splashscreen from being displayed at boot. The partit
### How to use with the Raspberry Pi Touch Display

If NOOBS detects you are using the [Raspberry Pi Touch Display](https://www.raspberrypi.org/products/raspberry-pi-touch-display/), it will enable the following functionality:
- A tap on the touchscreen can activate NOOBS aswell as holding the shift key down.
- A tap on the touchscreen can activate NOOBS as well as holding the shift key down.
- A tap on the touchscreen will simulate a mouse click
- A longpress on the touchscreen will simulate a mouse double-click.

Expand Down
2 changes: 1 addition & 1 deletion recovery/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
/* Partitioning settings */
#define PARTITION_ALIGNMENT 8192
#define PARTITION_GAP 2
/* Allow partitions to be shrinked PARTITION_GAP sectors
/* Allow partitions to be shrunk PARTITION_GAP sectors
if that prevents having a 4 MiB gap between the next one */
#define SHRINK_PARTITIONS_TO_MINIMIZE_GAPS

Expand Down
2 changes: 1 addition & 1 deletion recovery/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -721,7 +721,7 @@ void MainWindow::displayMode(int modenr, bool silent)
QWSServer::instance()->refresh();

// In case they can't see the message box, inform that mode change
// is occuring by turning on the LED during the change
// is occurring by turning on the LED during the change
QProcess *led_blink = new QProcess(this);
connect(led_blink, SIGNAL(finished(int)), led_blink, SLOT(deleteLater()));
led_blink->start("sh -c \"echo 1 > /sys/class/leds/led0/brightness; sleep 3; echo 0 > /sys/class/leds/led0/brightness\"");
Expand Down
2 changes: 1 addition & 1 deletion recovery/wifisettingsdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ void WifiSettingsDialog::on_passwordRadio_toggled(bool checked)

void WifiSettingsDialog::on_list_currentItemChanged(QListWidgetItem *current)
{
/* Enable authentication options appropiate for the SSID selected */
/* Enable authentication options appropriate for the SSID selected */
QVariantMap properties = current->data(Qt::UserRole).toMap();
QStringList keymgmt = properties.value("WPA").toMap().value("KeyMgmt").toStringList();
QStringList keymgmt_wpa2 = properties.value("RSN").toMap().value("KeyMgmt").toStringList();
Expand Down

0 comments on commit 44cda0c

Please sign in to comment.