From 4edf330217375c90161b83fda8f2c53f350ff7fc Mon Sep 17 00:00:00 2001 From: Ron Buckton Date: Fri, 20 Nov 2015 10:30:47 -0800 Subject: [PATCH] Minor comment update --- src/compiler/utilities.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/compiler/utilities.ts b/src/compiler/utilities.ts index 28faf0c2fda..1884cee1516 100644 --- a/src/compiler/utilities.ts +++ b/src/compiler/utilities.ts @@ -1581,8 +1581,9 @@ namespace ts { } /** - * Creates a shallow, memberwise clone of a node. The "pos", "end", "flags", and "parent" properties - * are excluded by default, and can be provided via the "location", "flags", and "parent" parameters. + * Creates a shallow, memberwise clone of a node. The "kind", "pos", "end", "flags", and "parent" + * properties are excluded by default, and can be provided via the "location", "flags", and + * "parent" parameters. * @param node The node to clone. * @param location An optional TextRange to use to supply the new position. * @param flags The NodeFlags to use for the cloned node.