diff options
author | Fabio Berger <me@fabioberger.com> | 2017-11-29 22:52:49 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2017-11-29 22:52:49 +0800 |
commit | 53522a98b99d27ecfc4c782ca43e0f002050d6ee (patch) | |
tree | 9b600ca0cd87b1a68abfd74eba44b728c21ae2ba /packages/website/ts/pages/documentation/docs_info.ts | |
parent | 0e856ccfab98fc2f9c105efca91b09adef6c3da0 (diff) | |
download | dexon-sol-tools-53522a98b99d27ecfc4c782ca43e0f002050d6ee.tar.gz dexon-sol-tools-53522a98b99d27ecfc4c782ca43e0f002050d6ee.tar.zst dexon-sol-tools-53522a98b99d27ecfc4c782ca43e0f002050d6ee.zip |
Rename packageName to displayName for clarity
Diffstat (limited to 'packages/website/ts/pages/documentation/docs_info.ts')
-rw-r--r-- | packages/website/ts/pages/documentation/docs_info.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/website/ts/pages/documentation/docs_info.ts b/packages/website/ts/pages/documentation/docs_info.ts index 7fe5d9b31..1afcf8aaf 100644 --- a/packages/website/ts/pages/documentation/docs_info.ts +++ b/packages/website/ts/pages/documentation/docs_info.ts @@ -11,7 +11,7 @@ import { } from 'ts/types'; export class DocsInfo { - public packageName: string; + public displayName: string; public packageUrl: string; public subPackageName?: string; public websitePath: string; @@ -21,7 +21,7 @@ export class DocsInfo { public sectionNameToMarkdown: {[sectionName: string]: string}; private docsInfo: DocsInfoConfig; constructor(config: DocsInfoConfig) { - this.packageName = config.packageName; + this.displayName = config.displayName; this.packageUrl = config.packageUrl; this.subPackageName = config.subPackageName; this.websitePath = config.websitePath; |