Skip to content

Commit ad2bf78

Browse files
authored
Fix a typo in releaseTools.psm1 (PowerShell#21306)
1 parent bc07fc1 commit ad2bf78

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/releaseTools.psm1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ function Get-ChangeLog
180180
## but not reachable from the last release tag. Instead, we need to exclude the commits that were cherry-picked,
181181
## and only include the commits that are not in the last release into the change log.
182182

183-
# Find the commits that were only in the orginal master, excluding those that were cherry-picked to release branch.
183+
# Find the commits that were only in the original master, excluding those that were cherry-picked to release branch.
184184
$new_commits_from_other_parent = git --no-pager log --first-parent --cherry-pick --right-only "$tag_hash...$other_parent_hash" --format=$format | New-CommitNode
185185
# Find the commits that were only in the release branch, excluding those that were cherry-picked from master branch.
186186
$new_commits_from_last_release = git --no-pager log --first-parent --cherry-pick --left-only "$tag_hash...$other_parent_hash" --format=$format | New-CommitNode

0 commit comments

Comments
 (0)