Skip to content
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.

Commit

Permalink
doc: update links in manpages as reported by the buildserver check
Browse files Browse the repository at this point in the history
  • Loading branch information
flo91 committed Jan 19, 2022
1 parent f2830c2 commit 41cf1df
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/decisions/error_codes.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Various projects and standards:
Currently they have 43 classes which all come from SQLSTATE. Postgres also throws additional errors but have to subclass it to one of the current 43 classes and have a special naming convention which have to start with a `P` in the subclass.
- [etcd](https://github.com/etcd-io/etcd):
Etcd's approach for errors are tightly coupled to the programming language Go as well as the [gRPC](https://grpc.io/) standard which currently has
[16 codes](https://godoc.org/google.golang.org/grpc/codes) defined. Some of these errors are similar or identical to those which will be used in elektra.
[16 codes](https://pkg.go.dev/google.golang.org/grpc/codes?utm_source=godoc) defined. Some of these errors are similar or identical to those which will be used in elektra.
Every error of etcd is associated with one of these categories and gets its own error message which is specified in [this](https://github.com/etcd-io/etcd/blob/master/etcdserver/api/v3rpc/rpctypes/error.go) file. This concept though does not allow easy subclassing which might be useful (eg. further split FailedPrecondition into more specific errors like semantic and syntactic errors)
- [Windows Registry](https://docs.microsoft.com/en-us/windows/desktop/sysinfo/registry):
The registry does not use any specific error concept but takes the standard [Win32 Error Codes](https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-erref/18d8fbe8-a967-4f1c-ae50-99ca8e491d2d). These are neither hierarchical nor have any special ordering. Basically it is the same as elektra has now except for no duplicated
Expand Down
2 changes: 1 addition & 1 deletion doc/tutorials/highlevel-bindings.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ direct mapping, significantly simplifies the generated code (and maybe also the

### Bindings for the `lowlevel` Library

Your programming language of choice must provide a way to call into C code (like [cgo](https://golang.org/cmd/cgo/)).
Your programming language of choice must provide a way to call into C code (like [cgo](https://pkg.go.dev/cmd/cgo/)).

In general we prefer (in this order):

Expand Down
2 changes: 1 addition & 1 deletion doc/tutorials/install-webui.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Elektra-web requires:

- [Elektra](https://libelektra.org/) with the [`yajl` plugin](https://master.libelektra.org/src/plugins/yajl/) installed
- A recent [node.js](https://nodejs.org/en/) installation (at least 6.x)
- [Go](https://golang.org/) with version > 1.13
- [Go](https://go.dev/) with version > 1.13

## Building with elektra-web Tool

Expand Down

0 comments on commit 41cf1df

Please sign in to comment.