Fix typos/Spelling

This simple PR fixes typos and spelling errors in code comments and documentation. It has no functional changes but does at least make the instruction more readable and match the code.
This commit is contained in:
BrianTeeman
2024-06-16 17:06:30 +01:00
parent 4db428456d
commit a9a27b5a8f
8 changed files with 18 additions and 18 deletions

View File

@ -107,7 +107,7 @@ class GithubProvider(GitProvider):
git_files = context.get("git_files", None)
if git_files:
return git_files
self.git_files = list(self.pr.get_files()) # 'list' to hanlde pagination
self.git_files = list(self.pr.get_files()) # 'list' to handle pagination
context["git_files"] = self.git_files
return self.git_files
except Exception: