Fix typo in comments (#912)

This commit is contained in:
Victor Voisin
2019-07-17 17:04:01 +02:00
committed by delvedor
parent 4d5a79cae0
commit 2ceb04697b
2 changed files with 4 additions and 4 deletions

View File

@ -52,7 +52,7 @@ interface SearchResponse<T> {
} }
} }
// Define the intefrace of the source object // Define the interface of the source object
interface Source { interface Source {
foo: string foo: string
} }
@ -123,7 +123,7 @@ interface SearchResponse<T> {
aggregations?: any; aggregations?: any;
} }
// Define the intefrace of the source object // Define the interface of the source object
interface Source { interface Source {
foo: string foo: string
} }

View File

@ -128,7 +128,7 @@ const searchParams: RequestParams.Search<SearchBody> = {
} }
} }
// Dewfine the interface of the search response // Define the interface of the search response
interface SearchResponse<T> { interface SearchResponse<T> {
hits: { hits: {
hits: Array<{ hits: Array<{
@ -137,7 +137,7 @@ interface SearchResponse<T> {
} }
} }
// Define the intefrace of the source object // Define the interface of the source object
interface Source { interface Source {
foo: string foo: string
} }