aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSepero <sepero111@gmail.com>2015-10-25 08:32:47 -0400
committerSepero <sepero111@gmail.com>2015-10-25 08:32:47 -0400
commit44662b3fb7b021ac18bda0e77f1146fe4e22b34a (patch)
tree2cdb770bf435ba7555caca781294dd678c8ecf11
parent3d642316fb5bc355bf5f5f5aae21deb4b29e71e1 (diff)
Misc typo corrections
-rw-r--r--LICENSE.md2
-rwxr-xr-xtemp_throttle.sh8
2 files changed, 5 insertions, 5 deletions
diff --git a/LICENSE.md b/LICENSE.md
index 2aef94a..ce85b30 100644
--- a/LICENSE.md
+++ b/LICENSE.md
@@ -1,3 +1,3 @@
GNU GPL 2.0
http://www.gnu.org/licenses/gpl-2.0.html
-Sepero 2012-2013
+Sepero 2012-2016
diff --git a/temp_throttle.sh b/temp_throttle.sh
index 57686ce..d90f368 100755
--- a/temp_throttle.sh
+++ b/temp_throttle.sh
@@ -5,7 +5,7 @@
# version 2.20
cat << EOF
-Author: Sepero 2013 (sepero 111 @ gmx . com)
+Author: Sepero 2016 (sepero 111 @ gmx . com)
URL: http://github.com/Sepero/temp-throttle/
EOF
@@ -140,13 +140,13 @@ get_temp () {
### END define script functions.
-# Mainloop
+# Main loop
while true; do
- get_temp # Gets the current tempurature and set it to the variable TEMP.
+ get_temp # Gets the current temperature and set it to the variable TEMP.
if [ $TEMP -gt $MAX_TEMP ]; then # Throttle if too hot.
throttle
elif [ $TEMP -le $LOW_TEMP ]; then # Unthrottle if cool.
unthrottle
fi
- sleep 3 # The amount of time between checking tempuratures.
+ sleep 3 # The amount of time between checking temperatures.
done