Skip to content

Commit a9efa8f

Browse files
committed
added .editorconfig, corrected one char typo
1 parent 1e76c1d commit a9efa8f

File tree

4 files changed

+26
-2
lines changed

4 files changed

+26
-2
lines changed

.Rbuildignore

+1
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ LICENSE
55
^local
66
.*\.tar\.gz$
77
^\.github
8+
^\.editorconfig$

.editorconfig

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# EditorConfig is awesome: http://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
# Unix-style newlines with a newline ending every file
7+
[*]
8+
end_of_line = lf
9+
insert_final_newline = true
10+
trim_trailing_whitespace = true
11+
12+
# Matches multiple files with brace expansion notation
13+
# 4 space indentation
14+
[*.{c,cpp,h,hpp,R,r}]
15+
indent_style = space
16+
indent_size = 4
17+
18+
# Tab indentation (no size specified)
19+
[Makefile]
20+
indent_style = tab

ChangeLog

+3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
* DESCRIPTION: Rever back to just GPL (>= 2)
1313
* LICENSE: Idem
1414

15+
* .editorconfig: Added standard settings file
16+
* .Rbuildignore: Idem
17+
1518
2022-01-04 Bryan W. Lewis <[email protected]>
1619

1720
* man/redisMonitorChannels.Rd: Improved minimal example

man/listen.Rd

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ channels, without knowledge of what (if any) subscribers there may be.
1616
Subscribers express interest in one or more channels, and only receive messages
1717
that are of interest, without knowledge of what (if any) publishers there are.
1818

19-
WARNING: The \code{listen} function blocks indefinitely until a
19+
WARNING: The \code{listen} function blocks indefinitely until a
2020
message is received.
2121
}
2222
\value{A three element list or an error, with elements "subscribe",
@@ -28,7 +28,7 @@ http://redis.io/commands
2828
B. W. Lewis
2929
}
3030
\seealso{
31-
\code{\link{redisMontorChannels}}
31+
\code{\link{redisMonitorChannels}}
3232
}
3333
\examples{
3434
\dontrun{

0 commit comments

Comments
 (0)