Skip to content

Fix 2 outstanding review issues for Asciidoctor 2 migration #1541

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

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion TRANSLATING.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ If there is no project for your language, you can start your own translation.
Base your work on the second edition of the book, available [here](https://github.com/progit/progit2). To do so:
1. Pick the correct [ISO 639 code](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) for your language.
1. Create a [GitHub organization](https://docs.github.com/en/github/setting-up-and-managing-organizations-and-teams/creating-a-new-organization-from-scratch), for example: `progit2-[your code]` on GitHub.
1. Create a project "`progit2"`.
1. Create a project `progit2`.
1. Copy the structure of progit/progit2 (this project) in your project and start translating.

### Updating the status of your translation
Expand Down
2 changes: 1 addition & 1 deletion book/07-git-tools/git-credential-read-only
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ exit(0) unless File.exists? path

known = {} # <3>
while line = STDIN.gets
break if line.strip == `"
break if line.strip == ''
k,v = line.strip.split '=', 2
known[k] = v
end
Expand Down