From 27acf3f1098e7845b63f1405107576511a367fa3 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Wed, 3 Feb 2016 09:24:56 -0800 Subject: [PATCH] Fix spelling of verify_in_transaction --- src/list.cpp | 10 +++++----- src/list.hpp | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/list.cpp b/src/list.cpp index 593aac03..937cbf02 100644 --- a/src/list.cpp +++ b/src/list.cpp @@ -49,7 +49,7 @@ Row List::get(size_t row_ndx) const void List::set(size_t row_ndx, size_t target_row_ndx) { verify_attached(); - verify_in_tranaction(); + verify_in_transaction(); verify_valid_row(row_ndx); m_link_view->set(row_ndx, target_row_ndx); } @@ -57,14 +57,14 @@ void List::set(size_t row_ndx, size_t target_row_ndx) void List::add(size_t target_row_ndx) { verify_attached(); - verify_in_tranaction(); + verify_in_transaction(); m_link_view->add(target_row_ndx); } void List::insert(size_t row_ndx, size_t target_row_ndx) { verify_attached(); - verify_in_tranaction(); + verify_in_transaction(); verify_valid_row(row_ndx, true); m_link_view->insert(row_ndx, target_row_ndx); } @@ -72,7 +72,7 @@ void List::insert(size_t row_ndx, size_t target_row_ndx) void List::remove(size_t row_ndx) { verify_attached(); - verify_in_tranaction(); + verify_in_transaction(); verify_valid_row(row_ndx); m_link_view->remove(row_ndx); } @@ -100,7 +100,7 @@ void List::verify_attached() const m_realm->verify_thread(); } -void List::verify_in_tranaction() const +void List::verify_in_transaction() const { if (!m_realm->is_in_transaction()) { throw std::runtime_error("Can only mutate a list within a transaction."); diff --git a/src/list.hpp b/src/list.hpp index c4f24df3..c2d6f21f 100644 --- a/src/list.hpp +++ b/src/list.hpp @@ -44,7 +44,7 @@ public: void remove(size_t list_ndx); void insert(size_t list_ndx, size_t target_row_ndx); - void verify_in_tranaction() const; + void verify_in_transaction() const; // These are implemented in object_accessor.hpp template