aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tensorboard/components/tf_storage/storage.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/tensorboard/components/tf_storage/storage.ts')
-rw-r--r--tensorflow/tensorboard/components/tf_storage/storage.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/tensorflow/tensorboard/components/tf_storage/storage.ts b/tensorflow/tensorboard/components/tf_storage/storage.ts
index 573df1cb2b..873bc483a0 100644
--- a/tensorflow/tensorboard/components/tf_storage/storage.ts
+++ b/tensorflow/tensorboard/components/tf_storage/storage.ts
@@ -25,7 +25,7 @@ import {getFakeHash, setFakeHash, TABS, useHash} from '../tf-globals/globals';
* which TensorBoard uses after like localhost:8000/#events&runPrefix=train*
* to store state in the URI.
*
- * It also allows saving the values to localStorage for long-term persistance.
+ * It also allows saving the values to localStorage for long-term persistence.
*/
type StringDict = {[key: string]: string};
@@ -38,7 +38,7 @@ export let TAB = '__tab__';
/**
* The name of the property for users to set on a Polymer component
* in order for its stored properties to be stored in the URI unambiguously.
- * (No need to set this if you want mutliple instances of the component to
+ * (No need to set this if you want multiple instances of the component to
* share URI state)
*
* Example:
@@ -258,7 +258,7 @@ function _writeComponent(component: string) {
* Convert dictionary of strings into a URI Component.
* All key value entries get added as key value pairs in the component,
* with the exception of a key with the TAB value, which if present
- * gets prepended to the URI Component string for backwards comptability
+ * gets prepended to the URI Component string for backwards compatibility
* reasons.
*/
function _dictToComponent(items: StringDict): string {