Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit001edda

Browse files
authored
chore: fix typo in comment-out (#2031)
* chore: fix typo in comment-out* chore: correct typo in comment-out
1 parentc7c2ebf commit001edda

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎server/src/linkedMap.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ export class LinkedMap<K, V> implements Map<K, V> {
285285
this._tail=undefined;
286286
}
287287
elseif(item===this._head){
288-
// This can onlyhappend if size === 1 which ishandle
288+
// This can onlyhappen if size === 1 which ishandled
289289
// by the case above.
290290
if(!item.next){
291291
thrownewError('Invalid list');
@@ -294,7 +294,7 @@ export class LinkedMap<K, V> implements Map<K, V> {
294294
this._head=item.next;
295295
}
296296
elseif(item===this._tail){
297-
// This can onlyhappend if size === 1 which ishandle
297+
// This can onlyhappen if size === 1 which ishandled
298298
// by the case above.
299299
if(!item.previous){
300300
thrownewError('Invalid list');

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp