diff --git a/Documentation/examples-from-user-filed-issues.md b/Documentation/examples-from-user-filed-issues.md index 81f8250c..89d6fee9 100644 --- a/Documentation/examples-from-user-filed-issues.md +++ b/Documentation/examples-from-user-filed-issues.md @@ -233,7 +233,7 @@ where the author email is currently `example@test.com`: ``` git filter-repo --refs main~5..main --commit-callback ' - if commit.author_email = b"example@test.com": + if commit.author_email == b"example@test.com": commit.author_name = "Raphaël González".encode() commit.author_email = b"rgonzalez@test.com" ' @@ -528,4 +528,4 @@ replacing every blob with. It is great. ``` -which has no leading spaces on any lines. \ No newline at end of file +which has no leading spaces on any lines.