You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#' Custom Assignment#'#' My assignment operator.#'#' @param x A name.#' @param value A value to assign.#'#' @export`%<-%`<-function(x, value) {
value
}
, produces the following .rd file,
\name{\%<-\%}
\alias{\%<-\%}
\title{Custom Assignment}
\usage{
\%\%(x) <- value
}
\arguments{
\item{x}{A name.}
\item{value}{A value to assign.}
}
\description{
My assignment operator.
}
The usage section should read,
\usage{
x %<-% value
}
The text was updated successfully, but these errors were encountered:
The roxygen documentation below,
, produces the following .rd file,
The usage section should read,
The text was updated successfully, but these errors were encountered: