-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Typo at perlfaq8 #78
Typo at perlfaq8 #78
Conversation
I propose: "no files..." => "with files..."
Typo: from => From
<.> => C<.>
Lost the 'C' pod mark
Please could you rebase that to remove the merge commits, and collapse like changes together? |
Sorry, Karen, but... I don't know how I can to rebase this mess. Any tip? |
Make sure you've got the updated master pulled down, then check out your branch and |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like most of the other changes in this pull request are now reversions of previous fixes, so I won't comment on each one. Could you please fix, and rebase?
Please look up how to do an interactive rebase, and squash all the similar commits together, on top of the upstream master branch. It should be a lot more clear then what changes you intend to make now, and the inadvertent reversions should disappear.
lib/perlfaq6.pod
Outdated
@@ -114,7 +114,7 @@ be mangled by many mailers): | |||
$/ = ''; # read in whole paragraph, not just one line | |||
while ( <> ) { | |||
while ( /^From /gm ) { # /m makes ^ match next to \n | |||
print "leading From in paragraph $.\n"; | |||
print "leading from in paragraph $.\n"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The text being matched is "From", so it was correct before.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok
lib/perlfaq5.pod
Outdated
@@ -1539,7 +1539,7 @@ a similar interface, but does the traversal for you too: | |||
(contributed by brian d foy) | |||
|
|||
If you have an empty directory, you can use Perl's built-in C<rmdir>. | |||
If the directory is not empty (so, with files or subdirectories), you | |||
If the directory is not empty (so, no files or subdirectories), you |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was just corrected (by you) in commit 9f41196. Why is it being reverted again?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, Karen. I mess all this pull.. Sorry. I will try to repair it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Karen, Can you remove all these commits/branch? Next, I can to resend all the changes into a new pull request.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, you can fix it all yourself in this branch. https://git-scm.com/book/en/v2/Git-Tools-Rewriting-History This is a very important skill to learn.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe the problem that I edited & pulled the changes with github only. I don't have a cloned git repository of perlfaq at my computer. I use the option of github of "edit this file" (in other words, fork the perlfaq repository, edit file(s), create pull request, all within github web pages).
To rebase, this is what I would do:
|
Ok. I rebased it locally and then merged it. thanks! |
* fix bad pod markup in perlfaq8 (PR #78; thanks, Joaquín Ferrero!) * remove stale section about lib.pm (PR #82, Dan Book) * update perlfaq9 to reference Email::Stuffer (PR #79, Dan Book) * update perlfaq9 to reference URL::Search (PR #80, Dan Book) * update perlfaq9 to use HTTP::Tiny (PR #81, Dan Book) * fix some broken links (issue #71, dctabuyz)
No description provided.