Skip to content

Commit

Permalink
[ci skip] Add space to comment
Browse files Browse the repository at this point in the history
  • Loading branch information
yui-knk authored and tkelman committed Jun 8, 2015
1 parent ad7717c commit 8d68131
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions base/base64.jl
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ for (val, ch) in enumerate(b64chars)
revb64chars[UInt8(ch)] = UInt8(val - 1)
end

#Decode a block of at least 2 and at most 4 bytes, received in encvec
#Returns the first decoded byte and stores up to two more in cache
# Decode a block of at least 2 and at most 4 bytes, received in encvec
# Returns the first decoded byte and stores up to two more in cache
function b64decode!(encvec::Vector{UInt8}, cache::Vector{UInt8})
if length(encvec) < 2
throw(ArgumentError("incorrect base64 format, block must be at least 2 and at most 4 bytes"))
Expand Down
2 changes: 1 addition & 1 deletion base/libc.jl
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ include("errno.jl")

## RawFD ##

#Wrapper for an OS file descriptor (on both Unix and Windows)
# Wrapper for an OS file descriptor (on both Unix and Windows)
immutable RawFD
fd::Int32
RawFD(fd::Integer) = new(fd)
Expand Down
6 changes: 3 additions & 3 deletions base/linalg.jl
Original file line number Diff line number Diff line change
Expand Up @@ -161,14 +161,14 @@ else
typealias BlasInt Int32
end

#Check that stride of matrix/vector is 1
# Check that stride of matrix/vector is 1
function chkstride1(A::StridedVecOrMat...)
for a in A
stride(a,1)== 1 || error("matrix does not have contiguous columns")
end
end

#Check that matrix is square
# Check that matrix is square
function chksquare(A::AbstractMatrix)
m,n = size(A)
m == n || throw(DimensionMismatch("matrix is not square"))
Expand All @@ -184,7 +184,7 @@ function chksquare(A...)
length(A)==1 ? sizes[1] : sizes
end

#Check that upper/lower (for special matrices) is correctly specified
# Check that upper/lower (for special matrices) is correctly specified
macro chkuplo()
:((uplo=='U' || uplo=='L') || throw(ArgumentError("""invalid uplo = $uplo
Expand Down

0 comments on commit 8d68131

Please sign in to comment.