aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tensorboard/components/tf-graph-common/lib/render.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/tensorboard/components/tf-graph-common/lib/render.ts')
-rw-r--r--tensorflow/tensorboard/components/tf-graph-common/lib/render.ts10
1 files changed, 5 insertions, 5 deletions
diff --git a/tensorflow/tensorboard/components/tf-graph-common/lib/render.ts b/tensorflow/tensorboard/components/tf-graph-common/lib/render.ts
index 96d485b0ed..fa0ee99d19 100644
--- a/tensorflow/tensorboard/components/tf-graph-common/lib/render.ts
+++ b/tensorflow/tensorboard/components/tf-graph-common/lib/render.ts
@@ -548,7 +548,7 @@ export class RenderGraphInfo {
// (which ignores control edges) and seeing that Z comes AFTER A.
//
// The property of being backwards is independent of whether the edge
- // is inbound or outbound. In the preceeding example, if we were building
+ // is inbound or outbound. In the preceding example, if we were building
// the subhierarchy for Z, we'd find bridge edge Z/Y=>A, walk to its
// topmost adjoining metaedge Z=>A and discover that it's backwards.
let backwards = false;
@@ -656,7 +656,7 @@ export class RenderGraphInfo {
// one edge in the bridgegraph from Z->A/C.
//
// At this point, we've added a container bridge node IN to house all
- // incoming bridge nodes. We'v alse added a bridge node Z' (with parent IN)
+ // incoming bridge nodes. We've also added a bridge node Z' (with parent IN)
// to A, and a bridge edge from Z'->C.
//
// +----------------------+
@@ -1059,7 +1059,7 @@ export class RenderMetaedgeInfo {
metaedge: Metaedge;
/**
- * Reference to the adjoining RenderMeteaedgeInfo from the parent's
+ * Reference to the adjoining RenderMetaedgeInfo from the parent's
* coreGraph. This is used during layout to determine the point at which this
* edge should touch the node's bounding box. This property will be null for
* edges which terminate at a node on both ends (all non-bridge edges).
@@ -1069,7 +1069,7 @@ export class RenderMetaedgeInfo {
/**
* Most of the time, a RenderMetaedgeInfo object represents a real
* edge between nodes in the underlying graph structure. But sometimes, an
- * edge only exsts for layout purposes. These structural edges are added
+ * edge only exists for layout purposes. These structural edges are added
* during buildSubhierarchy() to force dagre.layout() to put bridge nodes
* at the ends of the flow.
* @see buildSubhierarchy()
@@ -1291,7 +1291,7 @@ function hasTypeIn(node: Node, types: string[]): boolean {
return false;
}
-/** Move nodes that are speficied to be excluded out of the core graph. */
+/** Move nodes that are specified to be excluded out of the core graph. */
function extractSpecifiedNodes(renderNode: RenderGroupNodeInfo,
params: RenderGraphParams) {
let graph = renderNode.coreGraph;