Skip to content

Commit e68a477

Browse files
committed
Fixed a couple of spelling mistakes
1 parent 1cba980 commit e68a477

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Diff for: guides/v2.0/coding-standards/docblock-standard-javascript.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ A description must be provided along with parameters. Method descriptions should
8585
 *
8686
 * @param {project.MyClass} obj Instance of MyClass which leads to a long
8787
 *     comment that needs to be wrapped to two lines.
88-
 * @return {boolean} Whether something occured.
88+
 * @return {boolean} Whether something occurred.
8989
 */
9090
function someMethod(obj) {
9191
    // ...

Diff for: guides/v2.1/coding-standards/docblock-standard-javascript.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ A description must be provided along with parameters. Method descriptions should
9696
*
9797
* @param {project.MyClass} obj Instance of MyClass which leads to a long
9898
* comment that needs to be wrapped to two lines.
99-
* @return {boolean} Whether something occured.
99+
* @return {boolean} Whether something occurred.
100100
*/
101101
function someMethod(obj) {
102102
// ...

Diff for: guides/v2.2/extension-dev-guide/message-queues/implement-bulk.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ class Consumer
229229
try {
230230
//add here your own logic for async operations
231231
} catch (\Zend_Db_Adapter_Exception $e) {
232-
//here sample how to process exceptions if they occured
232+
//here sample how to process exceptions if they occurred
233233
$this->logger->critical($e->getMessage());
234234
//you can add here your own type of exception when operation can be retried
235235
if (

Diff for: guides/v2.3/extension-dev-guide/message-queues/implement-bulk.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ class Consumer
223223
try {
224224
//add here your own logic for async operations
225225
} catch (\Zend_Db_Adapter_Exception $e) {
226-
//here sample how to process exceptions if they occured
226+
//here sample how to process exceptions if they occurred
227227
$this->logger->critical($e->getMessage());
228228
//you can add here your own type of exception when operation can be retried
229229
if (

Diff for: swagger/lib/marked.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1208,7 +1208,7 @@ function marked(src, opt, callback) {
12081208
} catch (e) {
12091209
e.message += '\nPlease report this to https://github.com/chjj/marked.';
12101210
if ((opt || marked.defaults).silent) {
1211-
return '<p>An error occured:</p><pre>'
1211+
return '<p>An error occurred:</p><pre>'
12121212
+ escape(e.message + '', true)
12131213
+ '</pre>';
12141214
}

0 commit comments

Comments
 (0)