Skip to content

Commit

Permalink
Fix typo in error message.
Browse files Browse the repository at this point in the history
Co-authored-by: Maximilian Hoffman <[email protected]>
  • Loading branch information
reltuk and max-hoffman committed Jan 31, 2025
1 parent 86acc8c commit ff7aebb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go/libraries/doltcore/sqle/remotesrv.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ func GetInterceptorSqlContext(ctx context.Context) (*sql.Context, error) {
if v := ctx.Value(sqlContextInterceptorKey{}); v != nil {
return v.(*sql.Context), nil
}
return nil, errors.New("misconfiguration; a sql.Context should always be available from the intercetpor chain.")
return nil, errors.New("misconfiguration; a sql.Context should always be available from the interceptor chain.")
}

func (si SqlContextServerInterceptor) Stream() grpc.StreamServerInterceptor {
Expand Down

0 comments on commit ff7aebb

Please sign in to comment.