Skip to content

Commit 82eb1f1

Browse files
authored
JohnstonCode#1627: Fix "Gravatar" typos
1 parent 2d3fdc1 commit 82eb1f1

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,10 +104,10 @@ Here are all of the extension settings with their default values. To change any
104104
// Priority of encoding
105105
"svn.experimental.encoding_priority": [],
106106

107-
// Url for the gravitar icon using the <AUTHOR>, <AUTHOR_MD5> and <SIZE> placeholders
107+
// Url for the gravatar icon using the <AUTHOR>, <AUTHOR_MD5> and <SIZE> placeholders
108108
"svn.gravatar.icon_url": "https://www.gravatar.com/avatar/<AUTHOR_MD5>.jpg?s=<SIZE>&d=robohash",
109109

110-
// Use garavatar icons in log viewers
110+
// Use gravatar icons in log viewers
111111
"svn.gravatars.enabled": true,
112112

113113
// Ignores the warning when SVN is missing

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1073,15 +1073,15 @@
10731073
},
10741074
"svn.gravatar.icon_url": {
10751075
"type": "string",
1076-
"description": "Url for the gravitar icon using the <AUTHOR>, <AUTHOR_MD5> and <SIZE> placeholders",
1076+
"description": "Url for the gravatar icon using the <AUTHOR>, <AUTHOR_MD5> and <SIZE> placeholders",
10771077
"examples": [
10781078
"https://www.gravatar.com/avatar/<AUTHOR_MD5>.jpg?s=<SIZE>&d=https%3A%2F%2Fui-avatars.com%2Fapi%2F/<AUTHOR>/128"
10791079
],
10801080
"default": "https://www.gravatar.com/avatar/<AUTHOR_MD5>.jpg?s=<SIZE>&d=robohash"
10811081
},
10821082
"svn.gravatars.enabled": {
10831083
"type": "boolean",
1084-
"description": "Use garavatar icons in log viewers",
1084+
"description": "Use gravatar icons in log viewers",
10851085
"default": true
10861086
},
10871087
"svn.ignoreMissingSvnWarning": {

src/historyView/common.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,13 +216,13 @@ export function getCommitIcon(
216216
return gravatar;
217217
}
218218

219-
const gravitarUrl = configuration
219+
const gravatarUrl = configuration
220220
.get("gravatar.icon_url", "")
221221
.replace("<AUTHOR>", author)
222222
.replace("<AUTHOR_MD5>", md5(author))
223223
.replace("<SIZE>", size.toString());
224224

225-
gravatar = Uri.parse(gravitarUrl);
225+
gravatar = Uri.parse(gravatarUrl);
226226

227227
gravatarCache.set(author, gravatar);
228228

0 commit comments

Comments
 (0)