Fix typo in comments (#912)

This commit is contained in:
Victor Voisin
2019-07-17 17:04:01 +02:00
committed by delvedor
parent 23341d5f2a
commit 126c277496
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 {
foo: string
}
@ -123,7 +123,7 @@ interface SearchResponse<T> {
aggregations?: any;
}
// Define the intefrace of the source object
// Define the interface of the source object
interface Source {
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> {
hits: {
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 {
foo: string
}