@@ -810,7 +810,7 @@ def elaborate_diff(
810810convert a pre-existing PR in the old style to the new format which
811811supports bidirectional syncing. If you would like to blow away the old
812812PR and start anew, edit the Summary in the Phabricator diff to delete
813- the line 'Pull-Request-resolved ' and then run ghexport again.
813+ the line 'Pull-Request' and then run ghexport again.
814814"""
815815 )
816816
@@ -827,7 +827,7 @@ def elaborate_diff(
827827to export your diff.
828828
829829If you think this is in error, edit the Summary in the Phabricator diff
830- to delete the line 'Pull-Request-resolved ' and then run ghexport again.
830+ to delete the line 'Pull-Request' and then run ghexport again.
831831"""
832832 )
833833 else :
@@ -964,9 +964,7 @@ def process_commit(
964964 if self .direct :
965965 trailers_to_add .append (f"ghstack-comment-id: { elab_diff .comment_id } " )
966966
967- trailers_to_add .append (
968- f"Pull-Request-resolved: { pull_request_resolved .url ()} "
969- )
967+ trailers_to_add .append (f"Pull-Request: { pull_request_resolved .url ()} " )
970968
971969 commit_msg = ghstack .trailers .interpret_trailers (
972970 strip_mentions (diff .summary .rstrip ()), trailers_to_add
@@ -1773,7 +1771,7 @@ def _default_title_and_body(
17731771 commit_body = RE_GHSTACK_SOURCE_ID .sub ("" , commit_body )
17741772 # Comment ID is not necessary; source of truth is orig commit
17751773 commit_body = RE_GHSTACK_COMMENT_ID .sub ("" , commit_body )
1776- # Don't store Pull request resolved in the PR body; it's
1774+ # Don't store Pull request in the PR body; it's
17771775 # unnecessary
17781776 commit_body = ghstack .diff .re_pull_request_resolved_w_sp (self .github_url ).sub (
17791777 "" , commit_body
0 commit comments