8000 fix typo (#9400) · arangodb/arangodb@081e755 · GitHub
[go: up one dir, main page]

Skip to content

Commit 081e755

Browse files
dothebartjsteemann
authored andcommitted
fix typo (#9400)
1 parent 801c957 commit 081e755

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README_maintainers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ choose the `Npcap Loopback Adapter` number - 1:
399399
--sniff true \
400400
--cleanup false \
401401
--sniffDevice 1\
402-
--sniffProgramm c:/Programm Files/wireshark/tshark.exe
402+
--sniffProgram c:/Programm Files/wireshark/tshark.exe
403403
404404
you can later on use wireshark to inpsect the capture files.
405405

js/client/modules/@arangodb/process-utils.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1590,8 +1590,8 @@ function launchFinalize(options, instanceInfo, startTime) {
15901590
if (platform.substr(0, 3) === 'win') {
15911591
prog = 'c:/Program Files/Wireshark/tshark.exe';
15921592
}
1593-
if (options.sniffProgramm !== undefined) {
1594-
prog = options.sniffProgramm;
1593+
if (options.sniffProgram !== undefined) {
1594+
prog = options.sniffProgram;
15951595
}
15961596
if (options.sniff === 'sudo') {
15971597
args.unshift(prog);

js/client/modules/@arangodb/testing.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ let optionsDocumentation = [
8484
' - `sniff`: if we should try to launch tcpdump / windump for a testrun',
8585
' false / true / sudo',
8686
' - `sniffDevice`: the device tcpdump / tshark should use',
87-
' - `sniffProgramm`: specify your own programm',
87+
' - `sniffProgram`: specify your own programm',
8888
' - `build`: the directory containing the binaries',
8989
' - `buildType`: Windows build type (Debug, Release), leave empty on linux',
9090
' - `configDir`: the directory containing the config files, defaults to',
@@ -168,7 +168,7 @@ const optionsDefaults = {
168168
'singles': 2,
169169
'sniff': false,
170170
'sniffDevice': undefined,
171-
'sniffProgramm': undefined,
171+
'sniffProgram': undefined,
172172
'skipLogAnalysis': true,
173173
'skipMemoryIntense': false,
174174
'skipNightly': true,

0 commit comments

Comments
 (0)
0