1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/MxModelDisplay.R
\name{omxQuotes}
\alias{omxQuotes}
\title{omxQuotes}
\usage{
omxQuotes(name)
}
\arguments{
\item{name}{a character vector}
}
\value{
a character string
}
\description{
Quote helper function, often for error messages.
}
\details{
This is a helper function for creating a nicely
put together formatted string.
}
\examples{
omxQuotes(c("Oh", "blah", "dee", "Oh", "blah", "da"))
omxQuotes(c("A", "S", "F"))
omxQuotes("Hello World")
}
|