Skip to content

Commit 990a69d

Browse files
docs: fix typo in globals.py (#31728)
1 parent 3c3320a commit 990a69d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libs/langchain/langchain/globals.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def get_verbose() -> bool:
6464
# In the meantime, the `verbose` setting is considered True if either the old
6565
# or the new value are True. This accommodates users who haven't migrated
6666
# to using `set_verbose()` yet. Those users are getting deprecation warnings
67-
# directing them to use `set_verbose()` when they import `langhchain.verbose`.
67+
# directing them to use `set_verbose()` when they import `langchain.verbose`.
6868
old_verbose = langchain.verbose
6969

7070
global _verbose
@@ -115,7 +115,7 @@ def get_debug() -> bool:
115115
# In the meantime, the `debug` setting is considered True if either the old
116116
# or the new value are True. This accommodates users who haven't migrated
117117
# to using `set_debug()` yet. Those users are getting deprecation warnings
118-
# directing them to use `set_debug()` when they import `langhchain.debug`.
118+
# directing them to use `set_debug()` when they import `langchain.debug`.
119119
old_debug = langchain.debug
120120

121121
global _debug
@@ -172,7 +172,7 @@ def get_llm_cache() -> "BaseCache":
172172
# or the old value if both are falsy. This accommodates users
173173
# who haven't migrated to using `set_llm_cache()` yet.
174174
# Those users are getting deprecation warnings directing them
175-
# to use `set_llm_cache()` when they import `langhchain.llm_cache`.
175+
# to use `set_llm_cache()` when they import `langchain.llm_cache`.
176176
old_llm_cache = langchain.llm_cache
177177

178178
global _llm_cache

0 commit comments

Comments
 (0)