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 29c98fc commit 0357b02
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 31 deletions.
10 changes: 5 additions & 5 deletions tremor-script/lib/cncf/otel.tremor
Expand Up @@ -8,11 +8,11 @@
###
###
###
### * [span_id](otel/span_id.md) - OpenTelemetry Span Id utilities
### * [trace_id](otel/trace_id.md) - OpenTelemetry Trace Id utilities
### * [logs](otel/logs.md) - OpenTelemetry log event utilities
### * [metrics](otel/metrics.md) - OpenTelemetry metrics event utilities
### * [trace](otel/trace.md) - OpenTelemetry trace event utilities
### * [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

use cncf::otel::span_id;
use cncf::otel::trace_id;
Expand Down
4 changes: 2 additions & 2 deletions tremor-script/lib/cncf/otel/trace.tremor
@@ -1,7 +1,7 @@
### CNCF OpenTelemetry Trace event utilities
###
### * [spankind](trace/spankind.md) - Trace span kind
### * [status](trace/status.md) - Trace status
### * [spankind](spankind.md) - Trace span kind
### * [status](status.md) - Trace status

use cncf::otel::trace::spankind;
use cncf::otel::trace::status;
34 changes: 17 additions & 17 deletions tremor-script/lib/std.tremor
@@ -1,22 +1,22 @@
### The tremor language standard library it provides the following modules:
###
### * [array](std/array.md) - functions to deal with arrays (`[]`)
### * [base64](std/base64.md) - functions for base64 en and decoding
### * [binary](std/base64.md) - functions to deal with binary data (`<< 1, 2, 3 >>`)
### * [float](std/float.md) - functions to deal with floating point numbers
### * [integer](std/integer.md) - functions to deal with integer numbers
### * [json](std/json.md) - functions to deal with JSON
### * [math](std/math.md) - mathematical functions
### * [path](std/path.md) - path utility functions
### * [random](std/random.md) - random related functions
### * [range](std/range.md) - range related functions
### * [re](std/re.md) - functions handeling regular expressions
### * [record](std/record.md) - functions dealing with records (`{}`)
### * [string](std/string.md) - functions dealing with strings
### * [test](std/test.md) - test related functions
### * [type](std/type.md) - functions dealing with strings
### * [url](std/url.md) - url decoding/encoding functions
### * [size](std/size.md) - functions for converting size units
### * [array](array.md) - functions to deal with arrays (`[]`)
### * [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
### * [json](json.md) - functions to deal with JSON
### * [math](math.md) - mathematical functions
### * [path](path.md) - path utility functions
### * [random](random.md) - random related functions
### * [range](range.md) - range related functions
### * [re](re.md) - functions handeling regular expressions
### * [record](record.md) - functions dealing with records (`{}`)
### * [string](string.md) - functions dealing with strings
### * [test](test.md) - test related functions
### * [type](type.md) - functions dealing with strings
### * [url](url.md) - url decoding/encoding functions
### * [size](size.md) - functions for converting size units

use std::array;
use std::base64;
Expand Down
2 changes: 0 additions & 2 deletions tremor-script/lib/std/path.tremor
@@ -1,7 +1,5 @@
### The path module contains utility functions for path handling

use std::type;

## Determine if a base value matches an segment index array.
## Returns the value under the match on a hit.
## Returns a default user provided value on no match.
Expand Down
6 changes: 3 additions & 3 deletions tremor-script/lib/tremor.tremor
@@ -1,8 +1,8 @@
### Tremor runtime related libraries. This provides the following modules:
###
### * [chash](tremor/chash.md) - functions dealing with consistent hasing
### * [origin](tremor/origin.md) - functions providing access to onramp origin data
### * [system](tremor/system.md) - functions related to the running system
### * [chash](chash.md) - functions dealing with consistent hasing
### * [origin](origin.md) - functions providing access to onramp origin data
### * [system](system.md) - functions related to the running system

use tremor::chash;
use tremor::origin;
Expand Down
4 changes: 2 additions & 2 deletions tremor-script/lib/troy.troy
@@ -1,7 +1,7 @@
### Troy reusable logic
###
### * [connectors](troy/connectors.md) - default connectors
### * [pipelines](troy/pipelines.md) - default pipelines
### * [connectors](connectors.md) - default connectors
### * [pipelines](pipelines.md) - default pipelines

use troy::connectors;
use troy::pipelines;

0 comments on commit 0357b02

Please sign in to comment.