Skip to content

Commit f4889fb

Browse files
committed
Downcase initial letter of NJS-055 to match other messages
1 parent dbc2bfc commit f4889fb

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/njsMessages.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2015, 2018, Oracle and/or its affiliates.
1+
/* Copyright (c) 2015, 2019, Oracle and/or its affiliates.
22
All rights reserved. */
33

44
/******************************************************************************
@@ -83,7 +83,7 @@ static const char *errMsg[] = {
8383
"NJS-052: invalid data type at array index %d for bind position %d", // errIncompatibleTypeArrayIndexBind
8484
"NJS-053: array value expected, a non-array value provided", //errNonArrayProvided
8585
"NJS-054: binary build/Release/oracledb.node was not installed", // errNoBinaryInstalled
86-
"NJS-055: Binding by position and name cannot be mixed", // errMixedBind
86+
"NJS-055: binding by position and name cannot be mixed", // errMixedBind
8787
"NJS-056: maxSize must be specified and not zero for bind position %u", // errMissingMaxSizeByPos
8888
"NJS-057: maxSize must be specified and not zero for bind \"%s\"", // errMissingMaxSizeByName
8989
"NJS-058: maxSize of %u is too small for value of length %u in row %u", // errMaxSizeTooSmall
@@ -120,4 +120,3 @@ string njsMessages::Get(int err, ...)
120120
}
121121
return str;
122122
}
123-

0 commit comments

Comments
 (0)