Skip to content

Commit 7757c86

Browse files
bmaquetyoonhyejin
andauthored
fix: multiple typos (#15807)
Co-authored-by: Hyejin Yoon <0327jane@gmail.com>
1 parent f49ed55 commit 7757c86

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/analytics/resolver/GetHighlightsResolver.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ private List<Highlight> getHighlights() {
103103
endDate,
104104
(date) -> date.minusMonths(1)));
105105

106-
// Entity metdata statistics
106+
// Entity metadata statistics
107107
getEntityMetadataStats("Datasets", EntityType.DATASET).ifPresent(highlights::add);
108108
getEntityMetadataStats("Dashboards", EntityType.DASHBOARD).ifPresent(highlights::add);
109109
getEntityMetadataStats("Charts", EntityType.CHART).ifPresent(highlights::add);

datahub-graphql-core/src/main/resources/entity.graphql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7902,7 +7902,7 @@ A frequency distribution of a specific value within a dataset
79027902
"""
79037903
type ValueFrequency {
79047904
"""
7905-
Specific value. For numeric colums, the value will contain a strigified value
7905+
Specific value. For numeric columns, the value will contain a stringified value
79067906
"""
79077907
value: String!
79087908
"""

datahub-web-react/src/app/ingest/source/builder/RecipeForm/common.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ export const INCLUDE_LINEAGE: RecipeField = {
276276
export const INCLUDE_TABLE_LINEAGE: RecipeField = {
277277
name: 'include_table_lineage',
278278
label: 'Include Table Lineage',
279-
tooltip: 'Extract Tabel-Level lineage metadata. Enabling this may increase the duration of the sync.',
279+
tooltip: 'Extract Table-Level lineage metadata. Enabling this may increase the duration of the sync.',
280280
type: FieldType.BOOLEAN,
281281
fieldPath: 'source.config.include_table_lineage',
282282
rules: null,

datahub-web-react/src/app/ingestV2/source/builder/RecipeForm/common.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ export const INCLUDE_TABLE_LINEAGE: RecipeField = {
316316
name: 'include_table_lineage',
317317
label: 'Include Table Lineage',
318318
helper: 'Extract Table-Level lineage',
319-
tooltip: 'Extract Tabel-Level lineage metadata. Enabling this may increase the duration of the sync.',
319+
tooltip: 'Extract Table-Level lineage metadata. Enabling this may increase the duration of the sync.',
320320
type: FieldType.BOOLEAN,
321321
fieldPath: 'source.config.include_table_lineage',
322322
rules: null,

metadata-ingestion/src/datahub/ingestion/source/sql/athena_properties_extractor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def _extract_all_properties(self, sql: str) -> AthenaTableInfo:
145145
# We need to do certain transformations on the sql create statement:
146146
# - table names are not quoted
147147
# - column expression is not quoted
148-
# - sql parser fails if partition colums quoted
148+
# - sql parser fails if partition columns quoted
149149
fixed_sql = self._fix_sql_partitioning(sql)
150150
parsed = parse_one(fixed_sql, dialect=Athena)
151151
except ParseError as e:

0 commit comments

Comments
 (0)