doc: fix typo

Signed-off-by: Yan Zhu <yanzhu@alauda.io>
This commit is contained in:
Yan Zhu
2018-09-07 11:37:40 +08:00
parent 70ca035aa6
commit feb90346e0
14 changed files with 16 additions and 16 deletions

View File

@@ -19,7 +19,7 @@ func TestCaptureTestFunc(t *testing.T) {
// the first frame is the caller
frame := stack.Frames[0]
if expected := "captureFunc"; frame.Function != expected {
t.Fatalf("expected function %q but recevied %q", expected, frame.Function)
t.Fatalf("expected function %q but received %q", expected, frame.Function)
}
expected := "/runc/libcontainer/stacktrace"
if !strings.HasSuffix(frame.Package, expected) {