Skip to content

Commit

Permalink
Remove duplicated words in comments (#1362)
Browse files Browse the repository at this point in the history
Although it is spelling mistakes, it might make an affects
while reading.

Signed-off-by: Nguyen Hai Truong <truongnh@vn.fujitsu.com>
  • Loading branch information
truongnh1992 authored and pavolloffay committed Feb 20, 2019
1 parent ed6acfb commit c8282ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion model/process.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
)

// NewProcess creates a new Process for given serviceName and tags.
// The tags are sorted in place and kept in the the same array/slice,
// The tags are sorted in place and kept in the same array/slice,
// in order to store the Process in a canonical form that is relied
// upon by the Equal and Hash functions.
func NewProcess(serviceName string, tags []KeyValue) *Process {
Expand Down
2 changes: 1 addition & 1 deletion plugin/storage/es/spanstore/dbmodel/model.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ type Log struct {
Fields []KeyValue `json:"fields"`
}

// KeyValue is a a key-value pair with typed value.
// KeyValue is a key-value pair with typed value.
type KeyValue struct {
Key string `json:"key"`
Type ValueType `json:"type,omitempty"`
Expand Down

0 comments on commit c8282ca

Please sign in to comment.