Skip to content

Commit 06968cd

Browse files
committed
Let strings stand out more
1 parent 9ba9487 commit 06968cd

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

css/libgit2.css

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1958,7 +1958,10 @@ ul.library-group-functions p {
19581958
pre code .k, pre code .kt {
19591959
font-weight: bold;
19601960
}
1961-
pre code .s, pre code .se, pre code .cm {
1961+
pre code .s, pre code .se {
1962+
color: #b65c4d;
1963+
}
1964+
pre code .cm {
19621965
opacity: .75;
19631966
}
19641967

docs/guides/101-samples/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1372,7 +1372,7 @@ git_remote *newremote = NULL;
13721372
int error = git_remote_create(&newremote, repo, "upstream",
13731373
"https://github.com/libgit2/libgit2");
13741374

1375-
/* Pre-populates a new remote with a fetchspec */
1375+
/* Pre-populates a new remote with a custom fetchspec */
13761376
git_remote *newremote2 = NULL;
13771377
error = git_remote_create(&newremote2, repo, "upstream2",
13781378
"https://github.com/libgit2/libgit2", /* URL */

0 commit comments

Comments
 (0)