You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ma...@apache.org on 2016/09/06 18:41:44 UTC

[2/2] incubator-mynewt-newt git commit: Fix typo in error message.

Fix typo in error message.


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/commit/fa79d0c5
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/tree/fa79d0c5
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/diff/fa79d0c5

Branch: refs/heads/develop
Commit: fa79d0c57babf002485294a4334e85be90ebd8d3
Parents: 568ceb4
Author: Marko Kiiskila <ma...@runtime.io>
Authored: Tue Sep 6 11:40:42 2016 -0700
Committer: Marko Kiiskila <ma...@runtime.io>
Committed: Tue Sep 6 11:40:42 2016 -0700

----------------------------------------------------------------------
 newt/repo/repo.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/blob/fa79d0c5/newt/repo/repo.go
----------------------------------------------------------------------
diff --git a/newt/repo/repo.go b/newt/repo/repo.go
index 4d55631..da34fe4 100644
--- a/newt/repo/repo.go
+++ b/newt/repo/repo.go
@@ -237,7 +237,7 @@ func NewRepoDesc(name string, versBranchMap map[string]string) (*RepoDesc, error
 func (r *Repo) GetRepoDesc() (*RepoDesc, error) {
 	if r.rdesc == nil {
 		return nil, util.NewNewtError(fmt.Sprintf(
-			"Repository description for %s not yet initailized.  Must "+
+			"Repository description for %s not yet initialized.  Must "+
 				"download it first. ", r.Name()))
 	} else {
 		return r.rdesc, nil