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;
if (response_message._generateBody) {
builder = basics::VelocyPackHelper::stanitizeExternalsChecked(
builder = basics::VelocyPackHelper::sanitizeExternalsChecked(
response_message._payload);
slices.push_back(builder.slice());
}

View File

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

View File

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