Use // for single line comments

This commit is contained in:
Kevin Sawicki 2016-01-14 10:35:29 -08:00
parent 26350f4ccb
commit f4af744519
43 changed files with 311 additions and 310 deletions

View file

@ -7,7 +7,7 @@ bindings = process.atomBinding('session');
PERSIST_PERFIX = 'persist:';
/* Returns the Session from |partition| string. */
// Returns the Session from |partition| string.
exports.fromPartition = function(partition) {
if (partition == null) {
@ -24,7 +24,7 @@ exports.fromPartition = function(partition) {
};
/* Returns the default session. */
// Returns the default session.
Object.defineProperty(exports, 'defaultSession', {
enumerable: true,
@ -35,7 +35,7 @@ Object.defineProperty(exports, 'defaultSession', {
wrapSession = function(session) {
/* session is an EventEmitter. */
// session is an EventEmitter.
return session.__proto__ = EventEmitter.prototype;
};