Rae Marks created HADOOP-15136: ---------------------------------- Summary: Typo in rename spec pseudocode Key: HADOOP-15136 URL: https://issues.apache.org/jira/browse/HADOOP-15136 Project: Hadoop Common Issue Type: Bug Components: documentation Reporter: Rae Marks
Location of issue: [rename spec documentation|https://hadoop.apache.org/docs/stable/hadoop-project-dist/hadoop-common/filesystem/filesystem.html#boolean_renamePath_src_Path_d] The text description for what rename does in the case when the destination exists and is a directory is correct. However, the pseudocode is not. What is written: {code} let dest = if (isDir(FS, src) and d != src) : d + [filename(src)] else : d {code} What I expected: {{isDir(FS, src)}} should be {{isDir(FS, d)}}. -- This message was sent by Atlassian JIRA (v6.4.14#64029) --------------------------------------------------------------------- To unsubscribe, e-mail: common-issues-unsubscr...@hadoop.apache.org For additional commands, e-mail: common-issues-h...@hadoop.apache.org