Commit 212bf266 authored by Corey Lin's avatar Corey Lin Committed by Felix Lange

eth, p2p: fix comment typos (#18014)

parent c71e4fc4
...@@ -122,7 +122,7 @@ type Config struct { ...@@ -122,7 +122,7 @@ type Config struct {
// Miscellaneous options // Miscellaneous options
DocRoot string `toml:"-"` DocRoot string `toml:"-"`
// Type of the EWASM interpreter ("" for detault) // Type of the EWASM interpreter ("" for default)
EWASMInterpreter string EWASMInterpreter string
// Type of the EVM interpreter ("" for default) // Type of the EVM interpreter ("" for default)
EVMInterpreter string EVMInterpreter string
......
...@@ -228,7 +228,7 @@ type transport interface { ...@@ -228,7 +228,7 @@ type transport interface {
MsgReadWriter MsgReadWriter
// transports must provide Close because we use MsgPipe in some of // transports must provide Close because we use MsgPipe in some of
// the tests. Closing the actual network connection doesn't do // the tests. Closing the actual network connection doesn't do
// anything in those tests because NsgPipe doesn't use it. // anything in those tests because MsgPipe doesn't use it.
close(err error) close(err error)
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment