Skip to content

Commit 51ebf13

Browse files
committed
Fix some typos
1 parent 8cf58c2 commit 51ebf13

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Abstract/DynamicLink.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ Return the list of paths that will be searched for shared libraries.
110110

111111
lastindex(rpath::RPath) = lastindex(rpaths(rpath))
112112
keys(rpath::RPath) = 1:length(rpath)
113-
iterate(rpaht::RPath, idx=1) = idx > length(rpath) ? nothing : (rpath[idx], idx+1)
113+
iterate(rpath::RPath, idx=1) = idx > length(rpath) ? nothing : (rpath[idx], idx+1)
114114
length(rpath::RPath) = lastindex(rpath)
115115
eltype(::Type{D}) where {D <: RPath} = String
116116
getindex(rpath::RPath, idx) = rpaths(rpath)[idx]

src/Abstract/Segment.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,4 +192,4 @@ Return the index of the referred segment.
192192

193193

194194
## Printing
195-
show(io::IO, segs::Segments{H}) where {H <: ObjectHandle} = show_collection(io, segs, H)
195+
show(io::IO, segs::Segments{H}) where {H <: ObjectHandle} = show_collection(io, segs, H)

src/MachO/MachOLoadCmd.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ export MachOLoadCmd, MachOLoadCmdHeader, MachOLoadCmds, MachOLoadCmdRef
33

44

55
"""
6-
MachOLoadCmdHeader
6+
MachOLoadCmdHeader
77
88
All MachO Load Commands have a common header, containing information about what
99
kind of Load Command it is, and how large the load command is.

0 commit comments

Comments
 (0)