fix typos (#167)

* typo: link didn't work
  changelog.md > CHANGELOG.md

* fix link: file path

* typo: backslash > forward slash

* fix file path
This commit is contained in:
モハメド 2019-06-29 01:27:50 +09:00 committed by Bogdan Drutu
parent 86335d1ac6
commit aa6f482435
2 changed files with 3 additions and 3 deletions

View File

@ -113,7 +113,7 @@ request represents the incoming request. For a client, request represents the ou
All attributes are optional, but collector should make the best effort to
collect those.
> Work in progress! Please note, that the list below only contains attributes that aren't contained in the [OpenTelemetry main spec](../semantic-conventions.md) (yet):
> Work in progress! Please note, that the list below only contains attributes that aren't contained in the [OpenTelemetry main spec](../../semantic-conventions.md) (yet):
| Attribute name | Description | Type |Example value |
|---------------------------|-----------------------------|--------|---------------------------|

View File

@ -12,7 +12,7 @@ The OpenTracing specification uses a `Major.Minor` version number but has no `.P
## The OpenTracing Data Model
... moved to [terminology.md](../terminology.md) ...
... moved to [terminology.md](../../terminology.md) ...
Each **Span** encapsulates the following state:
@ -37,7 +37,7 @@ Each **SpanContext** encapsulates the following state:
### References between Spans
OpenTelemetry doesn't support references. Links are described in
[terminology.md](../terminology.md)
[terminology.md](../../terminology.md)
> A Span may reference zero or more other **SpanContexts** that are causally related. OpenTracing presently defines two types of references: `ChildOf` and `FollowsFrom`. **Both reference types specifically model direct causal relationships between a child Span and a parent Span.** In the future, OpenTracing may also support reference types for Spans with non-causal relationships (e.g., Spans that are batched together, Spans that are stuck in the same queue, etc).
>