Skip to content

Commit 2852f9d

Browse files
bwignallsimonmichael
authored andcommitted
Fix typos
1 parent 4266db5 commit 2852f9d

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ install:
5656
#
5757
# install latest stack master
5858
#- set PATH=C:\Users\appveyor\AppData\Roaming\local\bin;%PATH%
59-
# show the stack-installed binares that were restored from cache, can vary by instance
59+
# show the stack-installed binaries that were restored from cache, can vary by instance
6060
#- dir C:\Users\appveyor\AppData\Roaming\local\bin
6161
# - stack-release upgrade --git
6262
#- copy C:\Users\appveyor\AppData\Roaming\local\bin\stack.exe C:\Users\appveyor\AppData\Roaming\local\bin\stack-master.exe

hledger-install/hledger-install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ do_osx_install() {
327327
echo ""
328328
}
329329

330-
# Attempts to insall on FreeBSD. Installs dependencies with
330+
# Attempts to install on FreeBSD. Installs dependencies with
331331
# 'pkg install' and then downloads bindist.
332332
do_freebsd_install() {
333333
install_dependencies() {

hledger-lib/CHANGES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ Changes include:
159159

160160
- showTransaction: fix a case showing multiple missing amounts
161161
showTransaction could sometimes hide the last posting's amount even if
162-
one of the other posting amounts was already implcit, producing invalid
162+
one of the other posting amounts was already implicit, producing invalid
163163
transaction output.
164164

165165
- plog, plogAt: add missing newline

hledger-lib/Hledger/Read/CsvReader.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -800,7 +800,7 @@ transactionFromCsvRecord sourcepos rules record = t
800800
case postings' of
801801
-- To be compatible with the behavior of the old code which allowed two postings only, we enforce
802802
-- second posting when rules generated just first of them, and posting is of type that should be balanced.
803-
-- When we have srictly first and second posting, but second posting does not have amount, we fill it in.
803+
-- When we have strictly first and second posting, but second posting does not have amount, we fill it in.
804804
[("1",posting1)] ->
805805
case ptype posting1 of
806806
VirtualPosting -> [posting1]

hledger-web/static/js/jquery.flot.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ Licensed under the MIT license.
517517
colors: ["#edc240", "#afd8f8", "#cb4b4b", "#4da74d", "#9440ed"],
518518
legend: {
519519
show: true,
520-
noColumns: 1, // number of colums in legend table
520+
noColumns: 1, // number of columns in legend table
521521
labelFormatter: null, // fn: string -> string
522522
labelBoxBorderColor: "#ccc", // border color for the little label boxes
523523
container: null, // container (as jQuery object) to put legend in, null means default on top of graph

hledger/Hledger/Cli/Anon.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ instance Anon Journal where
3535
instance Anon Posting where
3636
anon p = p { paccount = anonAccount . paccount $ p
3737
, pcomment = T.empty
38-
, ptransaction = fmap anon . ptransaction $ p -- Note that this will be overriden
38+
, ptransaction = fmap anon . ptransaction $ p -- Note that this will be overridden
3939
, poriginal = anon <$> poriginal p
4040
}
4141

hledger/Hledger/Cli/Commands/Balance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ To illustrate this, consider the following budget:
448448
liabilities
449449
```
450450

451-
With this, monthly budget for electronics is defined to be $100 and budget for personal expenses is an additional $1000, which implicity means
451+
With this, monthly budget for electronics is defined to be $100 and budget for personal expenses is an additional $1000, which implicitly means
452452
that budget for both `expenses:personal` and `expenses` is $1100.
453453

454454
Transactions in `expenses:personal:electronics` will be counted both towards its $100 budget and $1100 of `expenses:personal` , and transactions in any other subaccount of `expenses:personal` would be

hledger/Hledger/Cli/Commands/Balance.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ To illustrate this, consider the following budget:
432432
liabilities
433433

434434
With this, monthly budget for electronics is defined to be $100 and
435-
budget for personal expenses is an additional $1000, which implicity
435+
budget for personal expenses is an additional $1000, which implicitly
436436
means that budget for both expenses:personal and expenses is $1100.
437437

438438
Transactions in expenses:personal:electronics will be counted both

hledger/hledger.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2411,7 +2411,7 @@ To illustrate this, consider the following budget:
24112411
.fi
24122412
.PP
24132413
With this, monthly budget for electronics is defined to be $100 and
2414-
budget for personal expenses is an additional $1000, which implicity
2414+
budget for personal expenses is an additional $1000, which implicitly
24152415
means that budget for both \f[C]expenses:personal\f[R] and
24162416
\f[C]expenses\f[R] is $1100.
24172417
.PP

hledger/hledger.info

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1952,7 +1952,7 @@ account, all its parents would have budget as well.
19521952
liabilities
19531953

19541954
With this, monthly budget for electronics is defined to be $100 and
1955-
budget for personal expenses is an additional $1000, which implicity
1955+
budget for personal expenses is an additional $1000, which implicitly
19561956
means that budget for both 'expenses:personal' and 'expenses' is $1100.
19571957

19581958
Transactions in 'expenses:personal:electronics' will be counted both

0 commit comments

Comments
 (0)