Skip to content

Commit

Permalink
Fix documentation
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 726066630
Change-Id: Ie3b4bacb57e93c1a3502d55e7804fef6bab83b3a
  • Loading branch information
Mikester95 authored and copybara-github committed Feb 12, 2025
1 parent c2e7625 commit 8461b23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/cheatsheet.md
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ l6.select_items(lambda x: x >= 2) # [2, 4]
# Append a single item
l7 = l1.with_list_append_update(4)
# Append multiple items
l8 = l1.with_list_append_update( [4, 5])
l8 = l1.with_list_append_update(kd.slice([4, 5]))

# Note that list update does not support
# updating/removing existing items
Expand Down

0 comments on commit 8461b23

Please sign in to comment.