Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs rectify typographical inaccuracies #44

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func New(cfg *Config) ProxyClient {
}
}

// Health indicates if server is operational; useful for event based awaits
// Health indicates if the server is operational; useful for event based awaits
// when integration testing
func (c *client) Health() error {
url := c.cfg.URL + "/health"
Expand Down
2 changes: 1 addition & 1 deletion common/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ var (

type Certificate = disperser.BlobInfo

// DomainType is a enumeration type for the different data domains for which a
// DomainType is an enumeration type for the different data domains for which a
// blob can exist between
type DomainType uint8

Expand Down
2 changes: 1 addition & 1 deletion e2e/server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ func TestPlasmaClient(t *testing.T) {

daClient := op_plasma.NewDAClient(ts.Address(), false, false)
t.Log("Waiting for client to establish connection with plasma server...")
// wait for server to come online after starting
// wait for the server to come online after starting
time.Sleep(5 * time.Second)

// 1 - write arbitrary data to EigenDA
Expand Down
2 changes: 1 addition & 1 deletion store/eigenda.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ func (e EigenDAStore) Put(ctx context.Context, value []byte) (comm []byte, err e
return bytes, nil
}

// Entries is a no-op for EigenDA Store
// Entries are a no-op for EigenDA Store
func (e EigenDAStore) Stats() *common.Stats {
return nil
}
Loading