mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-02-08 17:15:45 +01:00
Fix a few more comment typos.
This commit is contained in:
@@ -376,7 +376,7 @@ function iter(obj) {
|
||||
|
||||
/**
|
||||
* Returns true if both arguments are functions and
|
||||
* (targ() instaneof src) would also return true.
|
||||
* (targ() instanceof src) would also return true.
|
||||
*
|
||||
* @param {function} targ
|
||||
* @param {function} src
|
||||
|
||||
@@ -405,7 +405,7 @@ const File = Class("File", {
|
||||
|
||||
if (!perms)
|
||||
perms = parseInt('0644', 8);
|
||||
if (!this.exists()) // OCREAT won't creat the directory
|
||||
if (!this.exists()) // OCREAT won't create the directory
|
||||
this.create(this.NORMAL_FILE_TYPE, perms);
|
||||
|
||||
ofstream.init(this, mode, perms, 0);
|
||||
@@ -486,7 +486,7 @@ const File = Class("File", {
|
||||
MODE_EXCL: 0x80,
|
||||
|
||||
/**
|
||||
* @property {string} The current platform's path seperator.
|
||||
* @property {string} The current platform's path separator.
|
||||
*/
|
||||
get PATH_SEP() {
|
||||
delete this.PATH_SEP;
|
||||
|
||||
Reference in New Issue
Block a user