You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12-5Lines changed: 12 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,17 +4,24 @@
4
4
5
5
# stack
6
6
7
-
Package stack implements utilities to capture, manipulate, and format call stacks. It provides a simpler API than package runtime.
7
+
Package stack implements utilities to capture, manipulate, and format call
8
+
stacks. It provides a simpler API than package runtime.
8
9
9
-
The implementation takes care of the minutia and special cases of interpreting the program counter (pc) values returned by runtime.Callers.
10
+
The implementation takes care of the minutia and special cases of interpreting
11
+
the program counter (pc) values returned by runtime.Callers.
10
12
11
13
## Versioning
12
-
Package stack publishes stable APIs via gopkg.in. The most recent is v0 (the API is still baking, please file an issue if you have any suggestions), which is imported like so:
13
14
14
-
import "gopkg.in/stack.v0"
15
+
Package stack publishes stable APIs via gopkg.in. The most recent is v1, which
16
+
is imported like so:
17
+
18
+
import "gopkg.in/stack.v1"
15
19
16
20
## Formatting
17
-
Package stack's types implement fmt.Formatter, which provides a simple and flexible way to declaratively configure formatting when used with logging or error tracking packages.
21
+
22
+
Package stack's types implement fmt.Formatter, which provides a simple and
23
+
flexible way to declaratively configure formatting when used with logging or
0 commit comments