Browse Source

Merge pull request #18540 from abpframework/auto-merge/rel-8-0/2376

Merge branch dev with rel-8.0
pull/18544/head
maliming 3 years ago
committed by GitHub
parent
commit
e5fa3deb16
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      docs/en/UI/Common/Utils/Linked-List.md
  2. 2
      docs/zh-Hans/UI/Common/Utils/Linked-List.md

2
docs/en/UI/Common/Utils/Linked-List.md

@ -958,7 +958,7 @@ list.addMany([{ x: 1 }, { x: 0 }, { x: 2 }, { x: 0 }, { x: 3 }]).tail();
// {"x":1} <-> {"x":0} <-> {"x":2} <-> {"x":0} <-> {"x":3}
list.dropByValue(0, (value, searchedValue) => value.x === searchedValue);
list.dropByValueAll(0, (value, searchedValue) => value.x === searchedValue);
// {"x":1} <-> {"x":2} <-> {"x":3}
```

2
docs/zh-Hans/UI/Common/Utils/Linked-List.md

@ -925,7 +925,7 @@ list.addMany([{ x: 1 }, { x: 0 }, { x: 2 }, { x: 0 }, { x: 3 }]).tail();
// {"x":1} <-> {"x":0} <-> {"x":2} <-> {"x":0} <-> {"x":3}
list.dropByValue(0, (value, searchedValue) => value.x === searchedValue);
list.dropByValueAll(0, (value, searchedValue) => value.x === searchedValue);
// {"x":1} <-> {"x":2} <-> {"x":3}
```

Loading…
Cancel
Save