Skip to content

Commit d7ec087

Browse files
committed
typos
1 parent a66623e commit d7ec087

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.MD

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# gitbucket-h2-backup-plugin
22

3-
This plugin enhances [takezoe/gitbucket](https://github.com/takezoe/gitbucket) by offering a way to backup/dump the h2 database of gitbucket.
3+
This plugin enhances [GitBucket](https://github.com/gitbucket/gitbucket) by offering a way to backup/dump the H2 database of GitBucket.
44

5-
It originates from [pull request #845](takezoe/gitbucket#845) and can be used to adress database backup described in [gitbucket backup documentation](https://github.com/takezoe/gitbucket/wiki/Backup)
5+
It originates from [pull request #845](takezoe/gitbucket#845) and can be used to address database backup described in [gitbucket backup documentation](https://github.com/takezoe/gitbucket/wiki/Backup)
66

77
## Features
88

99
### H2 Backup
1010

11-
This plugin allows to backup the underlying H2 database used by default by gitbucket.
11+
This plugin allows to backup the underlying H2 database used by default by GitBucket.
1212

1313
## Usage
1414

@@ -94,7 +94,7 @@ sbt clean package
9494
In version 1.4.0, it is possible to secure the `database/backup` endpoint:
9595

9696
- launch gitbucket with System property _secure.backup_ set to true (for example `-Dsecure.backup=true` on the command line)
97-
- due to actual limitations of gibucket & plugins security, once the previous setting is activated,
97+
- due to actual limitations of gitbucket & plugins security, once the previous setting is activated,
9898
a call to `http://YOUR_GITBUCKET/database/backup` will be temporary redirected `http://YOUR_GITBUCKET/api/v3/plugins/database/backup`.
9999
You have to follow this temporary redirection.
100100
- if you call the endpoint using _httpie_, use the `--follow` parameter

src/main/scala/Plugin.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class Plugin extends gitbucket.core.plugin.Plugin {
99

1010
override val pluginName: String = "H2 Database Backup Plugin"
1111

12-
override val description: String = "Allows to export h2 database of gitbucket"
12+
override val description: String = "Allows to export the H2 database of GitBucket"
1313

1414
override val versions: List[Version] = List(
1515
new Version("1.0.0"),

0 commit comments

Comments
 (0)