From 149c80b33659f3ca0a6b79884e50db276b0c0798 Mon Sep 17 00:00:00 2001 From: paramjeetn Date: Sun, 24 May 2026 12:06:16 +0530 Subject: [PATCH] Fix incorrect dictionary unpacking output --- docs/cheatsheet/de/dictionaries.md | 2 +- docs/cheatsheet/en/dictionaries.md | 2 +- docs/cheatsheet/es/dictionaries.md | 2 +- docs/cheatsheet/fr/dictionaries.md | 2 +- docs/cheatsheet/ja/dictionaries.md | 2 +- docs/cheatsheet/ko/dictionaries.md | 2 +- docs/cheatsheet/pt/dictionaries.md | 2 +- docs/cheatsheet/ru/dictionaries.md | 2 +- docs/cheatsheet/zh/dictionaries.md | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/cheatsheet/de/dictionaries.md b/docs/cheatsheet/de/dictionaries.md index 337d162e..96230599 100644 --- a/docs/cheatsheet/de/dictionaries.md +++ b/docs/cheatsheet/de/dictionaries.md @@ -378,7 +378,7 @@ dict_c ``` ```output -{'a': 1, 'b': 3, 'c': 4} +{'b': 2, 'c': 4, 'a': 1} ``` diff --git a/docs/cheatsheet/en/dictionaries.md b/docs/cheatsheet/en/dictionaries.md index a808d9f1..6c5fe6d5 100644 --- a/docs/cheatsheet/en/dictionaries.md +++ b/docs/cheatsheet/en/dictionaries.md @@ -378,7 +378,7 @@ dict_c ``` ```output -{'a': 1, 'b': 3, 'c': 4} +{'b': 2, 'c': 4, 'a': 1} ``` diff --git a/docs/cheatsheet/es/dictionaries.md b/docs/cheatsheet/es/dictionaries.md index 9c9d7239..1ec19304 100644 --- a/docs/cheatsheet/es/dictionaries.md +++ b/docs/cheatsheet/es/dictionaries.md @@ -378,7 +378,7 @@ dict_c ``` ```output -{'a': 1, 'b': 3, 'c': 4} +{'b': 2, 'c': 4, 'a': 1} ``` diff --git a/docs/cheatsheet/fr/dictionaries.md b/docs/cheatsheet/fr/dictionaries.md index eec4e0c5..f8df69aa 100644 --- a/docs/cheatsheet/fr/dictionaries.md +++ b/docs/cheatsheet/fr/dictionaries.md @@ -378,7 +378,7 @@ dict_c ``` ```output -{'a': 1, 'b': 3, 'c': 4} +{'b': 2, 'c': 4, 'a': 1} ``` diff --git a/docs/cheatsheet/ja/dictionaries.md b/docs/cheatsheet/ja/dictionaries.md index 597acb07..66c9f3dc 100644 --- a/docs/cheatsheet/ja/dictionaries.md +++ b/docs/cheatsheet/ja/dictionaries.md @@ -378,7 +378,7 @@ dict_c ``` ```output -{'a': 1, 'b': 3, 'c': 4} +{'b': 2, 'c': 4, 'a': 1} ``` diff --git a/docs/cheatsheet/ko/dictionaries.md b/docs/cheatsheet/ko/dictionaries.md index 8af5a364..a78fcf4d 100644 --- a/docs/cheatsheet/ko/dictionaries.md +++ b/docs/cheatsheet/ko/dictionaries.md @@ -378,7 +378,7 @@ dict_c ``` ```output -{'a': 1, 'b': 3, 'c': 4} +{'b': 2, 'c': 4, 'a': 1} ``` diff --git a/docs/cheatsheet/pt/dictionaries.md b/docs/cheatsheet/pt/dictionaries.md index 3cbab0cd..d6525553 100644 --- a/docs/cheatsheet/pt/dictionaries.md +++ b/docs/cheatsheet/pt/dictionaries.md @@ -378,7 +378,7 @@ dict_c ``` ```output -{'a': 1, 'b': 3, 'c': 4} +{'b': 2, 'c': 4, 'a': 1} ``` diff --git a/docs/cheatsheet/ru/dictionaries.md b/docs/cheatsheet/ru/dictionaries.md index 95bbca8f..97d9f69e 100644 --- a/docs/cheatsheet/ru/dictionaries.md +++ b/docs/cheatsheet/ru/dictionaries.md @@ -378,7 +378,7 @@ dict_c ``` ```output -{'a': 1, 'b': 3, 'c': 4} +{'b': 2, 'c': 4, 'a': 1} ``` diff --git a/docs/cheatsheet/zh/dictionaries.md b/docs/cheatsheet/zh/dictionaries.md index fb2f3cfc..56ff94b8 100644 --- a/docs/cheatsheet/zh/dictionaries.md +++ b/docs/cheatsheet/zh/dictionaries.md @@ -378,7 +378,7 @@ dict_c ``` ```output -{'a': 1, 'b': 3, 'c': 4} +{'b': 2, 'c': 4, 'a': 1} ```