From 57abee282fda1b06b69fb9f74a8216a75ae3b856 Mon Sep 17 00:00:00 2001 From: Alexander Bezzubov Date: Tue, 24 Jul 2018 18:07:09 +0200 Subject: [PATCH] Remove quotes from index entries Signed-off-by: Alexander Bezzubov --- book/B-embedding-git/sections/dulwich.asc | 2 +- book/B-embedding-git/sections/go-git.asc | 2 +- book/B-embedding-git/sections/jgit.asc | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/book/B-embedding-git/sections/dulwich.asc b/book/B-embedding-git/sections/dulwich.asc index f78ac68a1..d926296fd 100644 --- a/book/B-embedding-git/sections/dulwich.asc +++ b/book/B-embedding-git/sections/dulwich.asc @@ -1,6 +1,6 @@ === Dulwich -(((Dulwich)))((("Python"))) +(((Dulwich)))(((Python))) There is also a pure-Python Git implementation - Dulwich. The project is hosted under https://www.dulwich.io/ It aims to provide an interface to git repositories (both local and remote) that doesn't call out to git directly but instead uses pure Python. diff --git a/book/B-embedding-git/sections/go-git.asc b/book/B-embedding-git/sections/go-git.asc index 3104b21ee..a513ae2da 100644 --- a/book/B-embedding-git/sections/go-git.asc +++ b/book/B-embedding-git/sections/go-git.asc @@ -1,6 +1,6 @@ === go-git -(((go-git)))((("Go"))) +(((go-git)))(((Go))) In case you want to integrate Git into a service written in Golang, there also is a pure Go library implementation. This implementation does not have any native dependencies and thus is not prone to manual memory management errors. It is also transparent for the standard Golang performance analysis tooling like CPU, Memory profilers, race detector, etc. diff --git a/book/B-embedding-git/sections/jgit.asc b/book/B-embedding-git/sections/jgit.asc index aaccc3308..b0ef657a4 100644 --- a/book/B-embedding-git/sections/jgit.asc +++ b/book/B-embedding-git/sections/jgit.asc @@ -1,6 +1,6 @@ === JGit -(((jgit)))(((java))) +(((jgit)))(((Java))) If you want to use Git from within a Java program, there is a fully featured Git library called JGit. JGit is a relatively full-featured implementation of Git written natively in Java, and is widely used in the Java community. The JGit project is under the Eclipse umbrella, and its home can be found at http://www.eclipse.org/jgit[].