Skip to content

Commit 22b3fe4

Browse files
authored
fix typo
1 parent e1a42e5 commit 22b3fe4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/replace_pdf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def hash_file(filepath):
3535
def copy_and_overwrite_if_necessary(source_path, target_path):
3636
if not target_path.exists() or DependencyUpdater.hash_file(source_path) != DependencyUpdater.hash_file(target_path):
3737
shutil.copy(source_path, target_path)
38-
print(f"{source_path} has been move to the appropriate folder within langchain's source code.")
38+
print(f"{source_path} has been moved to the appropriate folder within langchain's source code.")
3939
else:
4040
print(f"{source_path} is already up to date.")
4141

0 commit comments

Comments
 (0)