diff --git a/module-2/state-schema.ipynb b/module-2/state-schema.ipynb index 189cfd4b5..c99daf16d 100644 --- a/module-2/state-schema.ipynb +++ b/module-2/state-schema.ipynb @@ -67,7 +67,7 @@ " \n", "But, note that these are type hints. \n", "\n", - "They can used by static type checkers (like [mypy](https://github.com/python/mypy)) or IDEs to catch potential type-related errors before the code is run. \n", + "They can be used by static type checkers (like [mypy](https://github.com/python/mypy)) or IDEs to catch potential type-related errors before the code is run. \n", "\n", "But they are not enforced at runtime!" ] @@ -117,7 +117,7 @@ "source": [ "We can use our defined state class (e.g., here `TypedDictState`) in LangGraph by simply passing it to `StateGraph`.\n", "\n", - "And, we can think about each state key just a \"channel\" in our graph. \n", + "And, we can think about each state key as just a \"channel\" in our graph. \n", "\n", "As discussed in Module 1, we overwrite the value of a specified key or \"channel\" in each node." ]