1
0
Fork 0

fix typo in method name

This commit is contained in:
jsteemann 2016-08-16 13:11:39 +02:00
parent 3d2591f746
commit d5af72f47f
3 changed files with 4 additions and 4 deletions

View File

@ -180,7 +180,7 @@ void VppCommTask::addResponse(VppResponse* response, bool isError) {
VPackBuilder builder; VPackBuilder builder;
if (response_message._generateBody) { if (response_message._generateBody) {
builder = basics::VelocyPackHelper::stanitizeExternalsChecked( builder = basics::VelocyPackHelper::sanitizeExternalsChecked(
response_message._payload); response_message._payload);
slices.push_back(builder.slice()); slices.push_back(builder.slice());
} }

View File

@ -873,7 +873,7 @@ bool VelocyPackHelper::hasExternals(VPackSlice input) {
return false; return false;
} }
VPackBuilder VelocyPackHelper::stanitizeExternalsChecked(VPackSlice input, VPackBuilder VelocyPackHelper::sanitizeExternalsChecked(VPackSlice input,
bool checkExternals) { bool checkExternals) {
VPackBuilder builder; VPackBuilder builder;
bool resolveExt = true; bool resolveExt = true;

View File

@ -356,7 +356,7 @@ class VelocyPackHelper {
arangodb::velocypack::Builder&); arangodb::velocypack::Builder&);
static bool hasExternals(arangodb::velocypack::Slice const); static bool hasExternals(arangodb::velocypack::Slice const);
static VPackBuilder stanitizeExternalsChecked( static VPackBuilder sanitizeExternalsChecked(
arangodb::velocypack::Slice const, bool checkExternals = true); arangodb::velocypack::Slice const, bool checkExternals = true);
static uint8_t const KeyAttribute = 0x31; static uint8_t const KeyAttribute = 0x31;