Skip to content

Commit accc536

Browse files
小野 直人ko1
authored andcommitted
Fix typo
1 parent 8aa8b10 commit accc536

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ Type `devtools://devtools/bundled/inspector.html?ws=127.0.0.1:43633` in the addr
427427

428428
Also `open chrome` command works like `open vscode`.
429429

430-
For more information about how to use Chrome debugging, you might want to read [here](https://developer.chrome.com/docs/devtools/)
430+
For more information about how to use Chrome debugging, you might want to read [here](https://developer.chrome.com/docs/devtools/).
431431

432432
Note: If you want to maximize Chrome DevTools, click [Toggle Device Toolbar](https://developer.chrome.com/docs/devtools/device-mode/#viewport).
433433

misc/README.md.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ Type `devtools://devtools/bundled/inspector.html?ws=127.0.0.1:43633` in the addr
427427

428428
Also `open chrome` command works like `open vscode`.
429429

430-
For more information about how to use Chrome debugging, you might want to read [here](https://developer.chrome.com/docs/devtools/)
430+
For more information about how to use Chrome debugging, you might want to read [here](https://developer.chrome.com/docs/devtools/).
431431

432432
Note: If you want to maximize Chrome DevTools, click [Toggle Device Toolbar](https://developer.chrome.com/docs/devtools/device-mode/#viewport).
433433

test/support/utils.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def debug_code(program, remote: true, &test_steps)
120120

121121
private def debug_code_on_tcpip
122122
test_info = TestInfo.new(dup_scenario, 'TCP/IP', /\(rdbg:remote\)/)
123-
test_info.remote_info = setup_tcpip_remote_debuggeee
123+
test_info.remote_info = setup_tcpip_remote_debuggee
124124
cmd = "#{RDBG_EXECUTABLE} -A #{test_info.remote_info.port}"
125125
run_test_scenario cmd, test_info
126126
end
@@ -357,7 +357,7 @@ def setup_unix_doman_socket_remote_debuggee
357357
TCPIP_PORT = ss.first.local_address.ip_port
358358
end.each{|s| s.close}
359359

360-
def setup_tcpip_remote_debuggeee
360+
def setup_tcpip_remote_debuggee
361361
remote_info = setup_remote_debuggee("#{RDBG_EXECUTABLE} -O --port=#{TCPIP_PORT} -- #{temp_file_path}")
362362
remote_info.port = TCPIP_PORT
363363
remote_info

0 commit comments

Comments
 (0)