Skip to content

Commit

Permalink
Fix links in stdlib docs
Browse files Browse the repository at this point in the history
Signed-off-by: Matthias Wahl <matthiaswahl@m7w3.de>
  • Loading branch information
mfelsche committed May 11, 2022
1 parent 77ef7e9 commit 3837c14
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion tremor-script/lib/cncf.tremor
Expand Up @@ -8,7 +8,7 @@
###
### It provides the following modules for cloud native computing:
###
### * [otel](cncf/otel.md) - functionality related to `CNCF OpenTelemetry`
### * [otel](otel/index.md) - functionality related to `CNCF OpenTelemetry`
###

use cncf::otel;
6 changes: 3 additions & 3 deletions tremor-script/lib/cncf/otel.tremor
Expand Up @@ -10,9 +10,9 @@
###
### * [span_id](span_id.md) - OpenTelemetry Span Id utilities
### * [trace_id](trace_id.md) - OpenTelemetry Trace Id utilities
### * [logs](logs.md) - OpenTelemetry log event utilities
### * [metrics](metrics.md) - OpenTelemetry metrics event utilities
### * [trace](trace.md) - OpenTelemetry trace event utilities
### * [logs](logs/index.md) - OpenTelemetry log event utilities
### * [metrics](metrics/index.md) - OpenTelemetry metrics event utilities
### * [trace](trace/index.md) - OpenTelemetry trace event utilities

use cncf::otel::span_id;
use cncf::otel::trace_id;
Expand Down
4 changes: 2 additions & 2 deletions tremor-script/lib/cncf/otel/logs.tremor
@@ -1,7 +1,7 @@
### CNCF OpenTelemetry Log event utilities
###
### * [severity](logs/severity.md) - Log severity
### * [traceflags](logs/traceflags.md) - Log trace flags
### * [severity](severity.md) - Log severity
### * [traceflags](traceflags.md) - Log trace flags

use cncf::otel::logs::severity;
use cncf::otel::logs::traceflags;
2 changes: 1 addition & 1 deletion tremor-script/lib/cncf/otel/metrics.tremor
@@ -1,5 +1,5 @@
### CNCF OpenTelemetry Metrics event utilities
###
### * [temporality](metrics/temporality.md) - Metrics aggregation temporality
### * [temporality](temporality.md) - Metrics aggregation temporality

use cncf::otel::metrics::temporality;
2 changes: 1 addition & 1 deletion tremor-script/lib/cncf/otel/trace.tremor
@@ -1,7 +1,7 @@
### CNCF OpenTelemetry Trace event utilities
###
### * [spankind](spankind.md) - Trace span kind
### * [status](status.md) - Trace status
### * [status](status/index.md) - Trace status

use cncf::otel::trace::spankind;
use cncf::otel::trace::status;
3 changes: 2 additions & 1 deletion tremor-script/lib/std.tremor
Expand Up @@ -4,7 +4,7 @@
### * [base64](base64.md) - functions for base64 en and decoding
### * [binary](base64.md) - functions to deal with binary data (`<< 1, 2, 3 >>`)
### * [float](float.md) - functions to deal with floating point numbers
### * [integer](integer.md) - functions to deal with integer numbers
### * [integer](integer/index.md) - functions to deal with integer numbers
### * [json](json.md) - functions to deal with JSON
### * [math](math.md) - mathematical functions
### * [path](path.md) - path utility functions
Expand All @@ -14,6 +14,7 @@
### * [record](record.md) - functions dealing with records (`{}`)
### * [string](string.md) - functions dealing with strings
### * [test](test.md) - test related functions
### * [time](time/index.md) - time related functions
### * [type](type.md) - functions dealing with strings
### * [url](url.md) - url decoding/encoding functions
### * [size](size.md) - functions for converting size units
Expand Down

0 comments on commit 3837c14

Please sign in to comment.