Skip to content

Commit

Permalink
feat(wrapper): error message typo fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
bsrdjan committed Mar 27, 2022
1 parent 3541f65 commit f4e18c9
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion lib/wrapper/sapnwrfc-client.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/wrapper/sapnwrfc-client.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/noderfc.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
#define NODERFC_VERSION "Deactivate logging: LOG_RFC_CLIENT"
#else
// client binding version
#define NODERFC_VERSION "2.6.0-rc1"
#define NODERFC_VERSION "2.6.0"
#endif

template <typename... Args>
Expand Down
2 changes: 1 addition & 1 deletion src/ts/wrapper/sapnwrfc-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,7 @@ export class Client {
for (let rfmParamName of Object.keys(rfmParams)) {
if (rfmParamName.length === 0)
throw new TypeError(
`Empty RFM parameter name when calling "${rfmName}"}`
`Empty RFM parameter name when calling "${rfmName}"`
);
if (!rfmParamName.match(/^[a-zA-Z0-9_]*$/))
throw new TypeError(
Expand Down

0 comments on commit f4e18c9

Please sign in to comment.