From 9d983923ac40ab0dfd9aea94614ea029f75b0e2a Mon Sep 17 00:00:00 2001 From: Sergey Date: Wed, 21 Jan 2026 21:10:33 +0300 Subject: [PATCH] Missing letter added --- exercises/concept/inventory-management/.docs/introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/concept/inventory-management/.docs/introduction.md b/exercises/concept/inventory-management/.docs/introduction.md index 161b1d0e7cc..4671d985766 100644 --- a/exercises/concept/inventory-management/.docs/introduction.md +++ b/exercises/concept/inventory-management/.docs/introduction.md @@ -49,7 +49,7 @@ A `dict` can also be directly entered as a _dictionary literal_, using curly bra ## Accessing Values in a Dictionary You can access an entry in a dictionary using a _key_ in square (`[]`) brackets. -If a `key` does not exist n the `dict`, a `KeyError` is thrown: +If a `key` does not exist in the `dict`, a `KeyError` is thrown: ```python >>> bear["speed"]