Skip to content

Commit

Permalink
add git related files
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilsk committed Jun 25, 2019
1 parent 63047d5 commit cfaddfe
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
8 changes: 8 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.gitattributes export-ignore
.gitignore export-ignore
.travis.yml export-ignore

Makefile export-ignore

*.md export-ignore
*_test.go export-ignore
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# code coverage and quality reports
*.out
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ allocates at call stack: 1, detailed call stack:

## 🧩 Integration

This library uses [SemVer](https://semver.org/) for versioning, and it is not
The library uses [SemVer](https://semver.org) for versioning, and it is not
[BC](https://en.wikipedia.org/wiki/Backward_compatibility)-safe through major releases.
You can use [dep][] or [go modules][gomod] to manage its version.

Expand Down
2 changes: 1 addition & 1 deletion tracer.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ type Trace struct {
// Start creates a call entry and marks its start time.
//
// func Do(ctx context.Context) {
// call := tracer.Fetch(ctx).Start()
// call := tracer.Fetch(ctx).Start("id", "labelX", "labelY")
// defer call.Stop()
// }
//
Expand Down

0 comments on commit cfaddfe

Please sign in to comment.