Skip to content

Commit 5327ede

Browse files
authored
fix some typos (#332)
1 parent 86a1170 commit 5327ede

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/commands.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ function execute_command(state::DebuggerState, v::Union{Val{:c},Val{:nc},Val{:n}
5252
state.frame, pc = ret
5353
if pc isa BreakpointRef
5454
if pc.stmtidx != 0 # This is the dummy breakpoint to stop just after entering a call
55-
if state.terminal !== nothing # fix this, it happens when a test hits this and hasnt set a terminal
55+
if state.terminal !== nothing # fix this, it happens when a test hits this and hasn't set a terminal
5656
show_breakpoint(Base.pipe_writer(state.terminal), pc, state)
5757
end
5858
end

test/ui.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#
22
#
3-
# From base, but copied here to make sure we don't fail bacause base changed
3+
# From base, but copied here to make sure we don't fail because base changed
44
function my_gcd(a::T, b::T) where T<:Union{Int8,UInt8,Int16,UInt16,Int32,UInt32,Int64,UInt64,Int128,UInt128}
55
a == 0 && return abs(b)
66
b == 0 && return abs(a)

0 commit comments

Comments
 (0)