Remove bad getOption param

This commit is contained in:
Daniel Imms
2017-07-13 09:23:56 -07:00
parent 25fc01cb81
commit adc657898c
+1 -1
View File
@@ -396,7 +396,7 @@ Terminal.prototype.focus = function() {
* Retrieves an option's value from the terminal.
* @param {string} key The option key.
*/
Terminal.prototype.getOption = function(key, value) {
Terminal.prototype.getOption = function(key) {
if (!(key in Terminal.defaults)) {
throw new Error('No option with key "' + key + '"');
}