Skip to content

Commit 0a00109

Browse files
committed
Merge pull request #14680 from petercolberg/spelling
Fix spelling errors
2 parents 9c08e5d + a49bef9 commit 0a00109

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

base/docs/helpdb/Base.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10663,7 +10663,7 @@ DivideError
1066310663
"""
1066410664
AssertionError([msg])
1066510665
10666-
The asserted condition did not evalutate to `true`.
10666+
The asserted condition did not evaluate to `true`.
1066710667
Optional argument `msg` is a descriptive error string.
1066810668
"""
1066910669
AssertionError

base/socket.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ bind(sock::TCPServer, addr::InetAddr) = bind(sock,addr.host,addr.port)
446446

447447
function setopt(sock::UDPSocket; multicast_loop = nothing, multicast_ttl=nothing, enable_broadcast=nothing, ttl=nothing)
448448
if sock.status == StatusUninit
449-
error("Cannot set options on unitialized socket")
449+
error("Cannot set options on uninitialized socket")
450450
end
451451
if multicast_loop !== nothing
452452
uv_error("multicast_loop",ccall(:uv_udp_set_multicast_loop,Cint,(Ptr{Void},Cint),sock.handle,multicast_loop) < 0)

doc/stdlib/base.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1050,7 +1050,7 @@ Errors
10501050

10511051
.. Docstring generated from Julia source
10521052
1053-
The asserted condition did not evalutate to ``true``\ . Optional argument ``msg`` is a descriptive error string.
1053+
The asserted condition did not evaluate to ``true``\ . Optional argument ``msg`` is a descriptive error string.
10541054

10551055
.. function:: BoundsError([a],[i])
10561056

0 commit comments

Comments
 (0)