1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-30 19:25:41 +02:00

core, plugins: fix typos in comments on functions, use imperative

This commit is contained in:
Sébastien Helleu
2026-03-23 20:45:36 +01:00
parent d34eb40187
commit f53e7fb9ef
342 changed files with 6669 additions and 6729 deletions
+7 -7
View File
@@ -64,7 +64,7 @@ WeechatJsV8::~WeechatJsV8()
}
/*
* Loads a javascript script.
* Load a javascript script.
*/
bool
@@ -76,7 +76,7 @@ WeechatJsV8::load(Handle<String> source)
}
/*
* Loads a javascript script.
* Load a javascript script.
*/
bool
@@ -88,7 +88,7 @@ WeechatJsV8::load(const char *source)
}
/*
* Executes a javascript script.
* Execute a javascript script.
*/
bool
@@ -119,7 +119,7 @@ WeechatJsV8::execScript()
}
/*
* Checks if a function with given name exists in script.
* Check if a function with given name exists in script.
*/
bool
@@ -133,7 +133,7 @@ WeechatJsV8::functionExists(const char *function)
}
/*
* Executes a function in a javascript script.
* Execute a function in a javascript script.
*/
Handle<Value>
@@ -156,7 +156,7 @@ WeechatJsV8::execFunction(const char *function, int argc, Handle<Value> *argv)
}
/*
* Sets something in the global.
* Set something in the global.
*/
void
@@ -166,7 +166,7 @@ WeechatJsV8::addGlobal(Handle<String> key, Handle<Template> val)
}
/*
* Sets something in the global.
* Set something in the global.
*/
void