From 302f39e5450b06359036392b5f1db6b481e5428b Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 1 Nov 2022 21:46:39 -0400 Subject: [PATCH] spelling: unswapped Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- test/optional_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/optional_test.cpp b/test/optional_test.cpp index 3669a4b..36e6afd 100644 --- a/test/optional_test.cpp +++ b/test/optional_test.cpp @@ -687,7 +687,7 @@ void test_throwing_swap( T const* ) try { // This should attempt to swap optionals and fail at opt0.reset(*opt1) - // Both opt0 and op1 are left unchanged (unswaped) + // Both opt0 and op1 are left unchanged (unswapped) swap(opt0,opt1); passed = true ;