Skip to content

Commit

Permalink
core, swarm: typo fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ferhatelmas committed Oct 30, 2017
1 parent 8d434f6 commit 07e8c17
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion core/tx_journal.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func (journal *txJournal) load(add func(*types.Transaction) error) error {
}
defer input.Close()

// Temporarilly discard any journal additions (don't double add on load)
// Temporarily discard any journal additions (don't double add on load)
journal.writer = new(devNull)
defer func() { journal.writer = nil }()

Expand Down
2 changes: 1 addition & 1 deletion swarm/api/http/error.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ func initErrHandling() {
//ShowMultipeChoices is used when a user requests a resource in a manifest which results
//in ambiguous results. It returns a HTML page with clickable links of each of the entry
//in the manifest which fits the request URI ambiguity.
//For example, if the user requests bzz:/<hash>/read and that manifest containes entries
//For example, if the user requests bzz:/<hash>/read and that manifest contains entries
//"readme.md" and "readinglist.txt", a HTML page is returned with this two links.
//This only applies if the manifest has no default entry
func ShowMultipleChoices(w http.ResponseWriter, r *http.Request, list api.ManifestList) {
Expand Down
2 changes: 1 addition & 1 deletion swarm/api/http/error_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ func TestJsonResponse(t *testing.T) {
}

if !isJSON(string(respbody)) {
t.Fatalf("Expected repsonse to be JSON, received invalid JSON: %s", string(respbody))
t.Fatalf("Expected response to be JSON, received invalid JSON: %s", string(respbody))
}

}
Expand Down
4 changes: 2 additions & 2 deletions swarm/storage/pyramid.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import (
/*
The main idea of a pyramid chunker is to process the input data without knowing the entire size apriori.
For this to be achieved, the chunker tree is built from the ground up until the data is exhausted.
This opens up new aveneus such as easy append and other sort of modifications to the tree therby avoiding
This opens up new aveneus such as easy append and other sort of modifications to the tree thereby avoiding
duplication of data chunks.
Expand Down Expand Up @@ -451,7 +451,7 @@ func (self *PyramidChunker) prepareChunks(isAppend bool, chunkLevel [][]*TreeEnt
}
}

// Data ended in chunk boundry.. just signal to start bulding tree
// Data ended in chunk boundary.. just signal to start bulding tree
if n == 0 {
self.buildTree(isAppend, chunkLevel, parent, chunkWG, jobC, quitC, true, rootKey)
break
Expand Down

0 comments on commit 07e8c17

Please sign in to comment.