From f5c3cbdcd7321e9335f2a10c4df6f53b3af3c999 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Thu, 5 Sep 2019 21:57:41 -0400 Subject: [PATCH] DiscBase: Amend typo within getPartitonNodeCount() name Adds an extra 'i' to correct a typo. --- include/nod/DiscBase.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/nod/DiscBase.hpp b/include/nod/DiscBase.hpp index f5d54be..b666f25 100644 --- a/include/nod/DiscBase.hpp +++ b/include/nod/DiscBase.hpp @@ -350,7 +350,7 @@ public: const Header& getHeader() const { return m_header; } const IDiscIO& getDiscIO() const { return *m_discIO; } - size_t getPartitonNodeCount(size_t partition = 0) const { + size_t getPartitionNodeCount(size_t partition = 0) const { if (partition >= m_partitions.size()) { return -1; }