mirror of https://gitee.com/bigwinds/arangodb
fix typo in method name
This commit is contained in:
parent
3d2591f746
commit
d5af72f47f
|
@ -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());
|
||||
}
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue