Skip to content

Commit

Permalink
fix typos (#518)
Browse files Browse the repository at this point in the history
close #517
  • Loading branch information
spaette authored May 16, 2023
1 parent 1cb0e99 commit cd211af
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@
### 0.6.3

* precompile support added
* test/combine.jl and test/split.jl now imports Base.Dates explicity
* test/combine.jl and test/split.jl now imports Base.Dates explicitly

### 0.6.2

Expand Down
2 changes: 1 addition & 1 deletion docs/src/combine.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ resulting `TimeArray` to have 8,336 rows of data, corresponding to the
length of `AAPL`. This assumes that every day that Apple Computer, Inc.
traded, Caterpillar, Inc likewise traded. It turns out that this isn't
true. `CAT` did not trade on Sep 27, 1985 because Hurricane Glorio shut
down the New York Stock Exchage. Apple Computer trades on the electronic
down the New York Stock Exchange. Apple Computer trades on the electronic
NASDAQ and its trading was not halted on that day. The result of the
merge should then be 8,335 rows:

Expand Down
4 changes: 2 additions & 2 deletions src/timearray.jl
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ function print_time_array(io::IO, ta::TimeArray{T}, short=false, allcols=false)
short && return
println(io)

# calculate column withs
# calculate column widths
drow, dcol = displaysize(io)
res_row = 9 # number of reserved rows: summary line, label line ... etc
half_row = floor(Int, (drow - res_row) / 2)
Expand Down Expand Up @@ -468,7 +468,7 @@ getproperty(ta::AbstractTimeSeries, c::Symbol) = ta[c]

propertynames(ta::TimeArray) = colnames(ta)

###### element wrapers ###########
###### element wrappers ###########

"""
timestamp(ta::TimeArray)
Expand Down

0 comments on commit cd211af

Please sign in to comment.