From 3b76f81d0c9eb62617fbf40f2bd92ac7b624002f Mon Sep 17 00:00:00 2001
From: Richard Walters <rwalters@digitalstirling.com>
Date: Wed, 7 Oct 2020 16:25:22 -0700
Subject: Fix misspelling

---
 src/Uri.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/Uri.cpp b/src/Uri.cpp
index 9bd8c4a..a556276 100644
--- a/src/Uri.cpp
+++ b/src/Uri.cpp
@@ -182,7 +182,7 @@ namespace {
      *     An indication of whether or not the given address
      *     is a valid IPv6 address is returned.
      */
-    bool ValidateIpv4Adress(const std::string& address) {
+    bool ValidateIpv4Address(const std::string& address) {
         size_t numGroups = 0;
         size_t state = 0;
         std::string octetBuffer;
@@ -377,7 +377,7 @@ namespace {
             return false;
         }
         if (ipv4AddressEncountered) {
-            if (!ValidateIpv4Adress(address.substr(potentialIpv4AddressStart))) {
+            if (!ValidateIpv4Address(address.substr(potentialIpv4AddressStart))) {
                 return false;
             }
             numGroups += 2;
-- 
cgit v1.2.3