From e3a15b5fa2f7b44106434d18cb61877f51aef0eb Mon Sep 17 00:00:00 2001 From: kwcantrell Date: Thu, 26 Aug 2021 12:05:10 -0700 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Marcus Fedarko --- empress/support_files/js/empress.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/empress/support_files/js/empress.js b/empress/support_files/js/empress.js index cba5795a..4d249a91 100644 --- a/empress/support_files/js/empress.js +++ b/empress/support_files/js/empress.js @@ -3793,10 +3793,10 @@ define([ }; /** - * Returns the col variable value for the node. + * Returns the feature metadata value at a f. m. column for a node. * * @param {Number} node Postorder position of a node in the tree. - * @param {String} col The name of the feature metadata column. + * @param {String} col Name of a feature metadata column. * * @return {String} The col variable value for the node or undefined if * no value exists. @@ -3813,11 +3813,11 @@ define([ }; /** - * Checks to see if node has feature metadata. + * Checks to see if a node has feature metadata. * * @param {Number} node Postorder position of a node in the tree. * - * @return true if node has feature metadata else false. + * @return true if node has feature metadata, false otherwise. */ Empress.prototype.hasFeatureMetadata = function (node) { return _.has(this._tipMetadata, node) || _.has(this._intMetadata, node);