Sha256sum mismatch on rootfs download

I’m running through the Beaglebone Black image creation sequence documented at:
https://www.digikey.com/eewiki/display/linuxonarm/BeagleBone+Black

In the process I noticed that the sha256sum for the Debian 10 root file system tarball shown on the wiki page does not match that of the file I downloaded (tried twice, to be sure). I get:

2b2c9f44a8823c772105840725ccc340fafc59545b710f5a0e0a909d6dc4c798 debian-10.2-minimal-armhf-2019-11-23.tar.xz

and the page shows:

fd0dc469773ed55f37da7b92ae610c89c62531833e99714d48694de05e98852c debian-10.2-minimal-armhf-2019-11-23.tar.xz

Is this a simple mistake or is something more nefarious going on?

@philsuth, sorry, found the issue… When i updated the rootfs from debian-10.1 to debian-10.2 i missed copying the sha256sum values:

debian_stable="Debian 10"
if [ "x${arch}" = "xarmel" ] ; then
	debian_stable_rootfs="debian-${debian_ver_armel}-minimal-${arch}-${date}.tar.xz"
	-debian_stable_rootfs_sha256sum="a2914d5f456882d286cfe7735b6848eb1f12eb138c1e2b886856ac6927d50545"
	+debian_stable_rootfs_sha256sum="2d13a233c6c9e0d1d20972ecce56ebb9b688d93f1f1a0e0afc14cefb7e0b2552"
else
	debian_stable_rootfs="debian-${debian_ver_armhf}-minimal-${arch}-${date}.tar.xz"
	-debian_stable_rootfs_sha256sum="fd0dc469773ed55f37da7b92ae610c89c62531833e99714d48694de05e98852c"
	+debian_stable_rootfs_sha256sum="2b2c9f44a8823c772105840725ccc340fafc59545b710f5a0e0a909d6dc4c798"
fi

#debian_testing="Debian 10 (pre-release)"

ubuntu_stable="Ubuntu 18.04 LTS"
ubuntu_stable_rootfs="ubuntu-${ubuntu_ver}-minimal-${arch}-${date}.tar.xz"
-ubuntu_stable_rootfs_sha256sum="25eed3aafdb1cb492e5882db3f5b571842dfa8a52a1b438406d4b016fd7b383e"
+ubuntu_stable_rootfs_sha256sum="7135e04fbecb5af40ab8baac368816c59af701facbd622c4505f5cdd127e3e27"

echo "h1. Root File System" >> ${eewiki_out_file}
echo "<h3 id='heading--Root-File-System'>Root File System</h3>">> ${tf_out_file}

Page fix incoming…
Regards,

Thanks @RobertCNelson - for this as well as all of your other efforts here. They are greatly appreciated.