aboutsummaryrefslogtreecommitdiffstats
path: root/doc/architecture.md
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2023-01-23 22:48:44 +0100
committerMichael Muré <batolettre@gmail.com>2023-01-23 22:48:44 +0100
commit3c1b8fd044be73c3c860ce68a19977b985688e30 (patch)
tree6515750c4de28dde01b355b7514dcd83866c8c76 /doc/architecture.md
parent06e8396e6fe83c691bbdfd74cfdd6bc28a0d20f1 (diff)
downloadgit-bug-3c1b8fd044be73c3c860ce68a19977b985688e30.tar.gz
doc: add a feature matrix
Diffstat (limited to 'doc/architecture.md')
-rw-r--r--doc/architecture.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/architecture.md b/doc/architecture.md
index 5f81462b..395886ea 100644
--- a/doc/architecture.md
+++ b/doc/architecture.md
@@ -88,7 +88,7 @@ The package `termui` contains the interactive terminal user interface, implement
## graphql
-The package `graphql` implement the GraphQL API, mapping the data model and providing read/write access from outside of the process. This API is in particular used by the webUI but could be used to implement other user interfaces or bridges with other systems.
+The package `graphql` implement the GraphQL API, mapping the data model and providing read/write access from outside the process. This API is in particular used by the webUI but could be used to implement other user interfaces or bridges with other systems.
## webui
@@ -96,7 +96,7 @@ The package `webui` hold the web based user interface, implemented in both go an
The javascript code is compiled and packaged inside the go binary, allowing for a single file distribution of git-bug.
-When the webUI is started from the CLI command, a localhost HTTP server is started to serve the webUI resources (html, js, css), as well as the GraphQL API. When the webUI is loaded in the browser, it interact with the git-bug process through the GraphQL API to load and edit bugs.
+When the webUI is started from the CLI command, a localhost HTTP server is started to serve the webUI resources (html, js, css), as well as the GraphQL API. When the webUI is loaded in the browser, it interacts with the git-bug process through the GraphQL API to load and edit bugs.
## bridge