diff options
author | Michael Muré <batolettre@gmail.com> | 2022-06-25 12:44:42 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2022-06-25 12:44:42 +0200 |
commit | c6be0588717727c0c396ca1de3a06af82e334326 (patch) | |
tree | 95b758393e565fca9d4a29947b2ba3c88d6dc34f /entity/dag/example_test.go | |
parent | b43a447ab6677438da0609abda0c1492bf422dd7 (diff) | |
download | git-bug-c6be0588717727c0c396ca1de3a06af82e334326.tar.gz |
doc: more tiny fixes
Diffstat (limited to 'entity/dag/example_test.go')
-rw-r--r-- | entity/dag/example_test.go | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/entity/dag/example_test.go b/entity/dag/example_test.go index e6f5db86..5d4ea34d 100644 --- a/entity/dag/example_test.go +++ b/entity/dag/example_test.go @@ -18,10 +18,11 @@ import ( // synchronisation. To do this, we'll use the entity/dag package, which will do all the complex handling. // // The example we'll use here is a small shared configuration with two fields. One of them is special as -// it also defines who is allowed to change said configuration. Note: this example is voluntarily a bit -// complex with operation linking to identities and logic rules, to show that how something more complex -// than a toy would look like. That said, it's still a simplified example: in git-bug for example, more -// layers are added for caching, memory handling and to provide an easier to use API. +// it also defines who is allowed to change said configuration. +// Note: this example is voluntarily a bit complex with operation linking to identities and logic rules, +// to show that how something more complex than a toy would look like. That said, it's still a simplified +// example: in git-bug for example, more layers are added for caching, memory handling and to provide an +// easier to use API. // // Let's start by defining the document/structure we are going to share: |